BaseTaskForm.BorderMargin 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 the size, in pixels, of the border margin.
protected:
virtual property int BorderMargin { int get(); };
protected virtual int BorderMargin { get; }
member this.BorderMargin : int
Protected Overridable ReadOnly Property BorderMargin As Integer
Property Value
The size, in pixels, of the border margin. The default is 12.
Examples
The following example overrides the BorderMargin method to return a border size of 14.
protected override int BorderMargin {
get {
return 14;
}
}