API Reference
Function
New-HTMLSectionScrolling
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
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 SetsParameters
- Content ScriptBlock
- The script block containing the content to be displayed in the HTML section.