API Reference
Function
New-HTMLSectionScrollingItem
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
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 SetsParameters
- Content ScriptBlock
- The script block containing the content to be displayed within the section.
- SectionTitle String
- The title of the section.