Spread for ASP.NET 11 Product Documentation
Columns Property (RowHeader)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > RowHeader Class : Columns Property
Gets a Columns object for the columns in the row header.
Syntax
'Declaration
 
Public ReadOnly Property Columns As Columns
'Usage
 
Dim instance As RowHeader
Dim value As Columns
 
value = instance.Columns
public Columns Columns {get;}

Property Value

Columns object containing the columns in this row header
Remarks
This property is available at run time only.
Example
This example creates a row header and draws a red dotted border around the first column of the row header.
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.Columns[0].Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2);
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.Columns(0).Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2) 
See Also

Reference

RowHeader Class
RowHeader Members
Columns Class

User-Task Documentation

Customizing the Appearance of Headers