Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-HTMLSectionScrolling

Namespace PSWriteHTML

Creates a new HTML section with scrolling functionality.

Remarks

This function creates a new HTML section with scrolling functionality. It takes a script block as input, executes the script block, and generates HTML output for each SectionScrollingItem.

Examples

Authored help example

EXAMPLE 1


New-HTMLSectionScrolling -Content {
    [PSCustomObject]@{
        Type = 'SectionScrollingItem'
        HTMLOutput = '<p>Section 1</p>'
        ListEntry = 'Section 1'
    }
    [PSCustomObject]@{
        Type = 'SectionScrollingItem'
        HTMLOutput = '<p>Section 2</p>'
        ListEntry = 'Section 2'
    }
}
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-HTMLSectionScrolling [-Content <ScriptBlock>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Content ScriptBlock optionalposition: 0pipeline: False
The script block containing the content to be displayed in the HTML section.