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

Namespace PSWriteHTML

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

Authored help example

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>]
#
Parameter set: All Parameter Sets

Parameters

BackgroundColor String optionalposition: 1pipeline: False
The background color of the slide specified as a string.
Height Object optionalposition: 2pipeline: False
The height of the slide.
SlideContent ScriptBlock optionalposition: 0pipeline: False
The script block containing the content to be displayed on the slide.