Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.26 KB

stackpanel_borderthickness.md

File metadata and controls

40 lines (29 loc) · 1.26 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.StackPanel.BorderThickness
winrt property

Windows.UI.Xaml.Controls.StackPanel.BorderThickness

-description

Gets or sets the border thickness of the panel.

-xaml-syntax

<StackPanel BorderThickness="uniform"/>
- or -
<StackPanel BorderThickness="left&right,top&bottom"/>
- or -
<StackPanel BorderThickness="left,top,right,bottom"/>

-xaml-values

uniform
uniformA numeric value that specifies a uniform Thickness. The uniform value is applied to all four Thickness values (Left, Top, Right, Bottom).
left&right
left&rightA numeric value that specifies the Left and Right values of a symmetrical Thickness.
top&bottom
top&bottomA numeric value that specifies the Top and Bottom values of a symmetrical Thickness.
left,top,right,bottom
left,top,right,bottomFloating-point values that specify the four possible dimension values of a Thickness structure (Left, Top, Right, Bottom).
## -property-value The border thickness of the panel, as a [Thickness](../windows.ui.xaml/thickness.md) value.

-remarks

-examples

-see-also