Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.59 KB

itemswrapgrid_grouppadding.md

File metadata and controls

39 lines (29 loc) · 1.59 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.ItemsWrapGrid.GroupPadding
winrt property

Microsoft.UI.Xaml.Controls.ItemsWrapGrid.GroupPadding

-description

Gets or sets the amount of space around a group.

-xaml-syntax

<ItemsWrapGrid GroupPadding="uniform"/>
- or -
<ItemsWrapGrid GroupPadding="left&right,top&bottom"/>
- or -
<ItemsWrapGrid GroupPadding="left,top,right,bottom"/>

-xaml-values

uniform
uniformA value measured by pixels that specifies a uniform Thickness. The uniform value is applied to all four Thickness values (Left, Top, Right, Bottom).
left&right
left&rightA value measured by pixels that specifies the Left and Right values of a symmetrical Thickness.
top&bottom
top&bottomA value measured by pixels that specifies the Top and Bottom values of a symmetrical Thickness.
left,top,right,bottom
left,top,right,bottomValues measured by pixels that specify the four possible dimension values of a Thickness structure (Left, Top, Right, Bottom). In the XAML syntaxes shown, you can use a space rather than a comma as the delimiter between values.
## -property-value The amount of space around a group as a [Thickness](../microsoft.ui.xaml/thickness.md) value. [Thickness](../microsoft.ui.xaml/thickness.md) is a structure that stores dimension values using pixel measures. The default is a uniform [Thickness](../microsoft.ui.xaml/thickness.md) of 0.

-remarks

-examples

-see-also