Spread for ASP.NET 10 Product Documentation
Border Constructor(Color)
Example 


Color of the border
Creates a new one-pixel, solid border with the specified color.
Syntax
'Declaration
 
Public Function New( _
   ByVal color As Color _
)
'Usage
 
Dim color As Color
 
Dim instance As New Border(color)
public Border( 
   Color color
)

Parameters

color
Color of the border
Remarks
Initializes an instance of the Border class with the option to specify the border color.
Example
This examples creates a new Border object and applies it to an instance of a Cell object.
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;
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 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Border Class
Border Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.