Spread ASP.NET 6.0 Product Documentation
Border Constructor(Color)
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Border Class > Border Constructor : Border Constructor(Color)


color
Color of the border

Glossary Item Box

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)
C# 
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.
C#Copy Code
FarPoint.Web.Spread.Borderborder=newFarPoint.Web.Spread.Border(Color.Red);
FarPoint.Web.Spread.Cellacell;
acell=FpSpread1.Cells[0,0];
acell.Border=border;
Visual BasicCopy Code
DimborderAsNewFarPoint.Web.Spread.Border(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

© 2002-2012 GrapeCity, Inc. All Rights Reserved.