API Reference
New-CarouselSlide
Creates a new carousel slide with specified content, background color, and height.
Remarks
This function creates a new carousel slide with the provided content, background color, and height. The slide content is specified using a script block, the background color is a string representing a color, and the height is a numerical value.
Examples
EXAMPLE 1
New-CarouselSlide -SlideContent { "This is the content of the slide" } -BackgroundColor 'blue' -Height 200
Creates a new carousel slide with the specified content, background color 'blue', and height of 200 pixels.
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-CarouselSlide [-BackgroundColor <String>] [-Height <Object>] [-SlideContent <ScriptBlock>] [<CommonParameters>]
#
All Parameter SetsParameters
- BackgroundColor String
- The background color of the slide specified as a string.
- Height Object
- The height of the slide.
- SlideContent ScriptBlock
- The script block containing the content to be displayed on the slide.