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


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

Property Value

Cells object with the cells in this row header
Remarks
This property is available at run time only.
Example
This example changes the background color of the first cell in the row header to red.
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.Cells[0, 0].BackColor = Color.Red;
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.Cells.Item(0, 0).BackColor = Color.Red
See Also

Reference

RowHeader Class
RowHeader Members
Cells Class

User-Task Documentation

Customizing the Appearance of Headers