Creates a new one-pixel border with the specified style and color.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim style As BorderStyle
Dim color As Color
Dim instance As New Border(style, color) |
Parameters
- style
- Style of the border
- color
- Color of the border
Remarks
Example
This examples creates a new Border object and applies it to an instance of a Cell object.
C# | Copy Code |
---|
FarPoint.Web.Spread.Borderborder=newFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red);
FarPoint.Web.Spread.Cellacell;
acell=FpSpread1.Cells[0,0];
acell.Border=border; |
Visual Basic | Copy Code |
---|
DimborderAsNewFarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red)
DimacellAsFarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
acell.Border=border |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also