Gets a Columns object for the columns in the row header.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Columns As Columns |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As RowHeader
Dim value As Columns
value = instance.Columns |
Property Value
Columns object containing the columns in this row header
Remarks
Example
This example creates a row header and draws a red dotted border around the first column of the row header.
C# | Copy Code |
---|
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.Columns[0].Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2); |
Visual Basic | Copy Code |
---|
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) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also