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-HTMLSectionScrollingItem

Namespace PSWriteHTML

Creates a new HTML section with scrolling functionality.

Remarks

This function creates a new HTML section with scrolling functionality. It allows you to define the content and title of the section.

Examples

Authored help example

EXAMPLE 1


New-HTMLSectionScrollingItem -SectionTitle "Introduction" -Content {
    "This is the introduction section."
}
Creates a new HTML section with the title "Introduction" and the content "This is the introduction section."
        

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-HTMLSectionScrollingItem [-Content <ScriptBlock>] [-SectionTitle <String>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Content ScriptBlock optionalposition: 0pipeline: False
The script block containing the content to be displayed within the section.
SectionTitle String optionalposition: 1pipeline: False
The title of the section.