Creates one side of a four-sided, complex border with the specified color and width.
Syntax
Parameters
- color
- Color for this side of the border
- width
- Width of this side of the border, in pixels
Remarks
Example
This example creates a red border with the specified thickness.
C# | Copy Code |
---|
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(Color.Red, 1.5);
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side); |
Visual Basic | Copy Code |
---|
Dim side As New FarPoint.Win.ComplexBorderSide(Color.Red, 1.5)
Dim bord As New FarPoint.Win.ComplexBorder(side) |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also