Spread Windows Forms 12.0 Product Documentation
Border Property (Row)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : Border Property
Gets or sets the border for cells in this row.
Syntax
'Declaration
 
Public Property Border As IBorder
'Usage
 
Dim instance As Row
Dim value As IBorder
 
instance.Border = value
 
value = instance.Border
public IBorder Border {get; set;}

Property Value

IBorder object with the border
Example
This example specifies the border for the row.
FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.Border = New FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered)
See Also

Reference

Row Class
Row Members