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

Namespace PSWriteHTML

Creates a new HTML accordion element with customizable options.

Remarks

This function creates a new HTML accordion element with the specified accordion item content, duration of animation, and option to collapse on click.

Examples

Authored help example

EXAMPLE 1


New-HTMLAccordion -AccordionItem { "Accordion Content Here" } -Duration 500 -CollapseOnClick
Creates a new HTML accordion with the specified content, animation duration of 500 milliseconds, and collapses on click.
        

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-HTMLAccordion [-AccordionItem <ScriptBlock>] [-CollapseOnClick] [-Duration <Int32>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

AccordionItem ScriptBlock optionalposition: 0pipeline: False
Specifies the content of the accordion item as a script block.
CollapseOnClick SwitchParameter optionalposition: namedpipeline: False
Indicates whether the accordion should collapse when clicked.
Duration Int32 optionalposition: 1pipeline: False
Specifies the duration of the accordion animation in milliseconds.