Control.BorderThickness property

Expand
This topic has not yet been rated - Rate this topic

Control.BorderThickness property

[This documentation is preliminary and is subject to change.]

Gets or sets the border thickness of a control.

Syntax


public Thickness BorderThickness { get; set; }


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

XAML Values

uniform

A numeric value that specifies a uniform Thickness. The uniform value is applied to all four Thickness values (Left, Top, Right, Bottom).

left&right

A numeric value that specifies the Left and Right values of a symmetrical Thickness.

top&bottom

A numeric value that specifies the Top and Bottom values of a symmetrical Thickness.

left top right bottom

Floating-point values that specify the four possible dimension values of a Thickness structure (Left, Top, Right, Bottom).

Property value

Type: Thickness

The border thickness of a control, as a Thickness value.

Requirements

Minimum supported client

Windows 8 Release Preview

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Controls
Windows::UI::Xaml::Controls [C++]

Metadata

Windows.winmd

See also

Control

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD