Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Control.BorderThickness Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the border thickness of a control.

public:
 property Thickness BorderThickness { Thickness get(); void set(Thickness value); };
Thickness BorderThickness();

void BorderThickness(Thickness value);
public Thickness BorderThickness { get; set; }
var thickness = control.borderThickness;
control.borderThickness = thickness;
Public Property BorderThickness As Thickness
<control BorderThickness="uniform"/>
- or -
<control BorderThickness="left&right,top&bottom"/>
- or -
<control BorderThickness="left,top,right,bottom"/>

Property Value

The border thickness of a control, as a Thickness 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.

Applies to

See also


Feedback

Was this page helpful?