Spread Windows Forms 7.0 Product Documentation
RowHeaderVisible Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : RowHeaderVisible Property


Glossary Item Box

Gets or sets whether the row headers for this sheet are visible.

Syntax

Visual Basic (Declaration) 
Public Property RowHeaderVisible As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Boolean
 
instance.RowHeaderVisible = value
 
value = instance.RowHeaderVisible
C# 
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.
C#Copy Code
fpSpread1.ActiveSheet.ColumnHeaderVisible = false;
fpSpread1.ActiveSheet.RowHeaderVisible = false;
Visual BasicCopy Code
FpSpread1.ActiveSheet.ColumnHeaderVisible = False
FpSpread1.ActiveSheet.RowHeaderVisible = False

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.