Collapsible
Collapsibles are accordion elements that expand when clicked on. They allow you to hide content that is not immediately relevant to the user.
New-UDCollapsible
can be used to create a new group of collapsible items. New-UDCollapsibleItem
defines a new collapsible item that can contain any other control. The icon and title are customizable. New-UDCollapsible -Items {
New-UDCollapsibleItem -Title "Item 1" -Icon arrow_circle_right -Content {
"Some content"
}
}

Collapsible
Last modified 3yr ago