Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.61 KB

control_borderthickness.md

File metadata and controls

42 lines (31 loc) · 1.61 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.Control.BorderThickness
winrt property

Windows.UI.Xaml.Controls.Control.BorderThickness

-description

Gets or sets the border thickness of a control.

-xaml-syntax

<control BorderThickness="uniform"/>
- or -
<control BorderThickness="left&right,top&bottom"/>
- or -
<control 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 a control, as a [Thickness](../windows.ui.xaml/thickness.md) value.

-remarks

Each control might apply this property differently based on its visual template. This property only affects a control whose template uses the BorderThickness property as a parameter. On other controls, this property has no effect. For more info about visual templates, see the Template property.

-examples

-see-also

Thickness