New-UDRow
Creates a new row for a grid.
Last updated
Was this helpful?
Was this helpful?
Required? false
Position? 1
Default value
Accept pipeline input? false
Aliases
Accept wildcard characters? falseRequired? false
Position? named
Default value
Accept pipeline input? false
Aliases
Accept wildcard characters? false
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).PS >New-UDRow -Columns {
PS > New-UDColumn -SmallSize 6 -Content {
PS > "Column 1"
PS > }
PS > New-UDColumn -SmallSize 6 -Content {
PS > "Column 2"
PS > }
PS > }
Basic Row|Creates a new row with two columns, each taking up half the width on small screens.
-------------------------- EXAMPLE 2 --------------------------
PS >New-UDRow -Id "myRow" -Columns {
PS > New-UDColumn -SmallSize 4 -Content {
PS > "Column 1"
PS > }
PS > New-UDColumn -SmallSize 4 -Content {
PS > "Column 2"
PS > }
PS > } -Style @{ backgroundColor = "#f0f0f0" }
Row Style| Creates a new row with two columns, each taking up one-third of the width on small screens, and applies a background color style to the row.