Spread for ASP.NET 10 Product Documentation
BorderSizeBottom Field
Example 


Represents the BorderSizeBottom property (index is 6), which specifies the width of the bottom border.
Syntax
'Declaration
 
Public Shared ReadOnly BorderSizeBottom As BorderProperty
'Usage
 
Dim value As BorderProperty
 
value = BorderProperty.BorderSizeBottom
public static readonly BorderProperty BorderSizeBottom
Example
This example determines if one of the BorderProperty field has been defined and returns the result to a text box.
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);
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 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

BorderProperty Class
BorderProperty Members
BorderSize Field

 

 


Copyright © GrapeCity, inc. All rights reserved.