Creates one side of a four-sided, complex border with the specified style and color.
            
            
            
Syntax
            Parameters
- sideStyle
 
- Style of the border side
 - sideColor
 
- Color of the border side
 
            
						
			
            Remarks
            
            
Example
This example creates one side of a four-sided, complex border with settings equivalent to the specified side style.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(ComplexBorderSideStyle.DoubleLine, Color.Red);
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim side As New FarPoint.Win.ComplexBorderSide(ComplexBorderSideStyle.DoubleLine, Color.Red)
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