Spread Windows Forms 12.0 Product Documentation
RowHeaderVisible Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : RowHeaderVisible Property
Gets or sets whether the row headers for this sheet are visible.
Syntax
'Declaration
 
Public Property RowHeaderVisible As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.RowHeaderVisible = value
 
value = instance.RowHeaderVisible
public bool RowHeaderVisible {get; set;}

Property Value

Boolean: true if displayed; false otherwise
Remarks

This property is equivalent to the RowHeader.Visible property.

Set the ColumnHeaderVisible property to set the display of column headers.

Example
This example hides the column and row headers.
fpSpread1.ActiveSheet.ColumnHeaderVisible = false;
fpSpread1.ActiveSheet.RowHeaderVisible = false;
FpSpread1.ActiveSheet.ColumnHeaderVisible = False
FpSpread1.ActiveSheet.RowHeaderVisible = False
See Also

Reference

SheetView Class
SheetView Members
ColumnHeaderVisible Property

User-Task Documentation

Showing or Hiding Headers