Gets a Cells object for the cells in the row header.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public ReadOnly Property Cells As Cells  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As RowHeader
Dim value As Cells
 
value = instance.Cells  | 
 
| C# |   | 
|---|
public Cells Cells {get;} | 
 
            
            
            Property Value
Cells object with the cells in this row header
 
            
			
			
            Remarks
            
            
Example
This example changes the background color of the first cell in the row header to red.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.Cells[0, 0].BackColor = Color.Red;  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.Cells.Item(0, 0).BackColor = Color.Red  | 
 
 
            
            
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