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


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
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

RowHeader Class
RowHeader Members
Cells Class

User-Task Documentation

Customizing the Appearance of Headers

 

 


Copyright © GrapeCity, inc. All rights reserved.