Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.42 KB

border_borderthickness.md

File metadata and controls

42 lines (30 loc) · 1.42 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.Border.BorderThickness
winrt property

Windows.UI.Xaml.Controls.Border.BorderThickness

-description

Gets or sets the thickness of the border.

-xaml-syntax

<Border BorderThickness="uniform"/>
- or -
<Border BorderThickness="left&right,top&bottom"/>
- or -
<Border BorderThickness="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 properties (Left, Top, Right, Bottom).
left&right
left&rightA value measured by pixels that specifies the Left and Right properties of a symmetrical Thickness.
top&bottom
top&bottom A value measured by pixels that specifies the Top and Bottom properties of a symmetrical Thickness.
left,top,right,bottom
left,top,right,bottom Values measured by pixels that specify the four possible dimension properties 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 thickness of the border, in pixels. The default is 0 on all four sides.

-remarks

-examples

-see-also

Thickness