Spread ASP.NET 6.0 Product Documentation
BorderStyle Field
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > BorderProperty Class : BorderStyle Field


Glossary Item Box

Represents the BorderStyle property (index is 10), which specifies the style that applies to all sides of the object border.

Syntax

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

Remarks

For more information on these border styles, see the BorderStyle enumeration in the Microsoft .NET Framework Reference.

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 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.