Gets or sets the border for the control.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Shadows Property Border As IBorder |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SuperEditBase
Dim value As IBorder
instance.Border = value
value = instance.Border |
C# | |
---|
public virtual new IBorder Border {get; set;} |
Property Value
IBorder object that contains the border
Remarks
Example
C# | Copy Code |
---|
control.Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered,SystemColors.ControlLightLight,SystemColors.ControlDark,8,true,true,false,false);
|
Visual Basic | Copy Code |
---|
control.Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered,SystemColors.ControlLightLight,SystemColors.ControlDark,8,True,True,False,False);
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also