Spread Windows Forms 12.0 Product Documentation
Width Property (ComplexBorderSide)
Example 


FarPoint.Win Assembly > FarPoint.Win Namespace > ComplexBorderSide Class : Width Property
Gets the width of this side of the complex border.
Syntax
'Declaration
 
Public ReadOnly Property Width As Integer
'Usage
 
Dim instance As ComplexBorderSide
Dim value As Integer
 
value = instance.Width
public int Width {get;}

Property Value

Integer number of pixels in the width of this border side
Example
This example returns the width of the side.
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);
int i = side.Width;
MessageBox.Show("The width of the side is " + i.ToString() + " pixels.");
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 i As Integer = side.Width
MessageBox.Show("The width of the side is " + i.ToString() + " pixels.")
See Also

Reference

ComplexBorderSide Class
ComplexBorderSide Members