Spread Windows Forms 13.0 Product Documentation
FarPoint.Win Assembly / FarPoint.Win Namespace / ComplexBorderSide Class / DashStyle Property
Example


In This Topic
    DashStyle Property (ComplexBorderSide)
    In This Topic
    Gets the dash style of this side of the complex border.
    Syntax
    'Declaration
     
    Public ReadOnly Property DashStyle As DashStyle
    'Usage
     
    Dim instance As ComplexBorderSide
    Dim value As DashStyle
     
    value = instance.DashStyle
    public DashStyle DashStyle {get;}

    Property Value

    DashStyle setting that determines the style of the dashed lines for the border side
    Example
    This example returns the dash style for 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);
    System.Drawing.Drawing2D.DashStyle ds = side.DashStyle;
    MessageBox.Show("The dash style for the side is " + Convert.ToInt32(ds).ToString() + ".");
    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 ds As System.Drawing.Drawing2D.DashStyle = side.DashStyle
    MessageBox.Show("The dash style for the side is " + Convert.ToInt32(ds).ToString() + ".")
    See Also