For the complete documentation index, see llms.txt. This page is also available as Markdown.

New-UDTransferList

Creates a transfer list component.

Synopsis

Creates a transfer list component.

Syntax

New-UDTransferList [[-Id] <String>] [[-Item] <ScriptBlock>] [[-SelectedItem] <String[]>] [[-OnChange] <Endpoint>] [[-ClassName] <String>] [-Disabled] [[-Height] <String>] [[-Width] <String>] [-ShowSearch] [[-Alignment] <String>] [-Dense] [[-LeftTitle] <String>] [[-RightTitle] <String>] [[-LeftSubTitle] <String>] [[-RightSubTitle] <String>] [-Enhanced] [<CommonParameters>]

Description

A transfer list (or "shuttle") enables the user to move one or more list items between lists.

Parameters

-Id

The ID of this component.

Required?                    false
Position?                    1
Default value                [Guid]::NewGuid()
Accept pipeline input?       false
Aliases
Accept wildcard characters?  false

-Item

A list of items that can be transferred between lists. Use New-UDTransferListItem to create an item.

-SelectedItem <String[]>

A list of selected items. Use the value of item to transfer items between lists.

-OnChange

A script block that is executed when the user changes the selected items.

-ClassName

-Height

-Width

-Alignment

Alignment of the transfer list. Valid values are left, right, and center.

-LeftTitle

Title for the left hand list.

-RightTitle

Title for the right hand list.

-LeftSubTitle

Subtitle for the left hand list.

-RightSubTitle

Subtitle for the right hand list.

Outputs

-------------------------- EXAMPLE 1 --------------------------

Last updated

Was this helpful?