Spread Windows Forms 12.0 Product Documentation
Border Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetStyleProperty Class : Border Field
Represents the border setting of the sheet style. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly Border As SheetStyleProperty
'Usage
 
Dim value As SheetStyleProperty
 
value = SheetStyleProperty.Border
public static readonly SheetStyleProperty Border
Example
This example queries if the border has been set.
FarPoint.Win.Spread.StyleInfo info = new FarPoint.Win.Spread.StyleInfo();
bool b;
info.Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, Color.LightBlue, Color.DarkBlue, 2);
fpSpread1.ActiveSheet.DefaultStyle = info;
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.Border);
listBox1.Items.Add(b.ToString());
Dim info As New FarPoint.Win.Spread.StyleInfo()
Dim b As Boolean
info.Border = New FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, Color.LightBlue, Color.DarkBlue, 2)
FpSpread1.ActiveSheet.DefaultStyle = info
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.Border)
ListBox1.Items.Add(b.ToString())
See Also

Reference

SheetStyleProperty Class
SheetStyleProperty Members