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


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) 
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

Reference

RowHeader Class
RowHeader Members
Columns Class

User-Task Documentation

Customizing the Appearance of Headers

 

 


Copyright © GrapeCity, inc. All rights reserved.