Creates a new one-pixel, solid border with the specified color.
Syntax
Visual Basic (Declaration) | |
---|
Public Function New( _
ByVal color As Color _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim color As Color
Dim instance As New Border(color) |
Parameters
- 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.Border border=new FarPoint.Web.Spread.Border(Color.Red);
FarPoint.Web.Spread.Cell acell;
acell=FpSpread1.Cells[0,0];
acell.Border=border; |
Visual Basic | Copy Code |
---|
Dim border As New FarPoint.Web.Spread.Border(Color.Red)
Dim acell As FarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
acell.Border=border |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also