Spread Windows Forms 7.0 Product Documentation
ComplexBorderSide Constructor(Color,Int32,DashStyle)
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > ComplexBorderSide Class > ComplexBorderSide Constructor : ComplexBorderSide Constructor(Color,Int32,DashStyle)


color
Color for this side of the border
width
Width of this side of the border, in pixels
dashStyle
Style of dashed line for this side of the border; a setting of the .NET Framework's DashStyle enumeration

Glossary Item Box

Creates one side of a four-sided, complex border with the specified color, width, and dash style.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal color As Color, _
   ByVal width As Integer, _
   ByVal dashStyle As DashStyle _
)
Visual Basic (Usage)Copy Code
Dim color As Color
Dim width As Integer
Dim dashStyle As DashStyle
 
Dim instance As New ComplexBorderSide(color, width, dashStyle)
C# 
public ComplexBorderSide( 
   Color color,
   int width,
   DashStyle dashStyle
)

Parameters

color
Color for this side of the border
width
Width of this side of the border, in pixels
dashStyle
Style of dashed line for this side of the border; a setting of the .NET Framework's DashStyle enumeration

Remarks

Any border side that is created with the CreateBorderSide(color, width, dashstyle) constructor has the following properties:

  • color specified
  • width specified
  • dash style specified
  • empty dash pattern
  • empty compound array

Example

This example creates a red border with the specified thickness and dash style.
C#Copy Code
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Solid);
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
Visual BasicCopy Code
Dim side As New FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Solid)
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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.