Gets a Rows object for the rows in the row header.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public ReadOnly Property Rows As Rows  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As RowHeader
Dim value As Rows
 
value = instance.Rows  | 
 
| C# |   | 
|---|
public Rows Rows {get;} | 
 
            
            
            Property Value
Rows object containing the rows in this row header
 
            
			
			
            Remarks
            
            
Example
This example creates multiple rows in the row headers in the sheet and puts a different border around each of the rows.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.ColumnCount = 3;
rhdr.Rows[0].Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Salmon, 2);
rhdr.Rows[1].Border = new FarPoint.Web.Spread.Border(BorderStyle.Groove, Color.Yellow, 2);
rhdr.Rows[2].Border = new FarPoint.Web.Spread.Border(BorderStyle.Inset, Color.YellowGreen, 2);  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.ColumnCount = 3
rhdr.Rows(0).Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Salmon, 2)
rhdr.Rows(1).Border = New FarPoint.Web.Spread.Border(BorderStyle.Groove, Color.Yellow, 2)
rhdr.Rows(2).Border = New FarPoint.Web.Spread.Border(BorderStyle.Inset, Color.YellowGreen, 2)  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also