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

New-UDColumn

Creates a new column for a grid.

Synopsis

Creates a new column for a grid.

Syntax

New-UDColumn [-Id <String>] [-SmallSize <Int32>] [-LargeSize <Int32>] [-MediumSize <Int32>] [-ExtraLargeSize <Int32>] [-ExtraSmallSize <Int32>] [[-Content] <ScriptBlock>] [-Style <Hashtable>] [<CommonParameters>]

Description

Creates a new column for a grid. This is a wrapper for New-UDGrid -Item. Sizing uses screen size breakpoints and a 12 column grid system.

Parameters

-Id

The ID of the column.

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

-SmallSize

The size of the column on small screens.

-LargeSize

The size of the column on large screens.

-MediumSize

The size of the column on medium screens.

-ExtraLargeSize

The size of the column on extra large screens.

-ExtraSmallSize

The size of the column on extra small screens.

-Content

The content of the column.

-Style

The style of the column.

Outputs

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

Last updated

Was this helpful?