Gets whether this side is drawn in the complex border.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Draw As Boolean |
C# | |
---|
public bool Draw {get;} |
Property Value
true to draw this side of the border;
false otherwise
Example
This example returns whether the side is drawn.
C# | Copy Code |
---|
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(true, Color.Red, (int)1.5, System.Drawing.Drawing2D.DashStyle.Solid, new float[] {0.33F, 0.5F, 0.66F, 1.0F}, new float[] {0.33F, 0.5F, 0.66F, 1.0F});
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
bool b = side.Drawn;
MessageBox.Show("It is " + b.ToString() + " that the side is drawn."); |
Visual Basic | Copy Code |
---|
Dim side As New FarPoint.Win.ComplexBorderSide(True, Color.Red, 1.5, Drawing2D.DashStyle.Solid, New Single() {0.33F, 0.5F, 0.66F, 1.0F}, New Single() {0.33F, 0.5F, 0.66F, 1.0F})
Dim bord As New FarPoint.Win.ComplexBorder(side)
Dim b As Boolean = side.Drawn
MessageBox.Show("It is " + b.ToString() + " that the side is drawn.") |
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