Spread for ASP.NET 11 Product Documentation
Border Constructor(BorderStyle,Color,Int16)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Border Class > Border Constructor : Border Constructor(BorderStyle,Color,Int16)
Style of the border
Color of the border
Width of the border
Creates a new border with the specified style, color, and width.
Syntax
'Declaration
 
Public Function New( _
   ByVal style As BorderStyle, _
   ByVal color As Color, _
   ByVal size As Short _
)
'Usage
 
Dim style As BorderStyle
Dim color As Color
Dim size As Short
 
Dim instance As New Border(style, color, size)
public Border( 
   BorderStyle style,
   Color color,
   short size
)

Parameters

style
Style of the border
color
Color of the border
size
Width of the border
Remarks
Initializes an instance of the Border class with the option to specify the border style, color, and width.
Example
This examples creates a new Border object and applies it to an instance of a Cell object.
FarPoint.Web.Spread.Borderborder=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2);
FarPoint.Web.Spread.Cell acell;
acell=FpSpread1.Cells[0,0];
acell.Border=border;
Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2)
Dim acell As FarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
acell.Border=border
See Also

Reference

Border Class
Border Members
Overload List