Spread for ASP.NET 7.0 Product Documentation
BorderColor Field
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > BorderProperty Class : BorderColor Field


Glossary Item Box

Represents the BorderColor property (index is 0), which specifies the color that applies to all sides of the object border.

Syntax

Visual Basic (Declaration) 
Public Shared ReadOnly BorderColor As BorderProperty
Visual Basic (Usage)Copy Code
Dim value As BorderProperty
 
value = BorderProperty.BorderColor
C# 
public static readonly BorderProperty BorderColor

Example

This example determines if one of the BorderProperty field has been defined and returns the result to a text box.
C#Copy Code
FarPoint.Web.Spread.Border border = New FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
bool bl;
acell = FpSpread1.Cells[0, 0];
border.BorderColor = Color.Red;
border.BorderSize = 2;
border.BorderStyle = BorderStyle.Groove;

bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderStyle);
acell.Border = border;
TextBox1.Text = Convert.ToString(bl);
Visual BasicCopy Code
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
Dim bl As Boolean
acell = FpSpread1.Cells(0, 0)
border.BorderColor = Color.Red
border.BorderSize = 2
border.BorderStyle = BorderStyle.Groove

bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderStyle)
acell.Border = border
TextBox1.Text = bl

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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.