Spread Windows Forms 9.0 Product Documentation
ColumnHeaderVisible Property
Example 


Gets or sets whether the column headers for this sheet are visible.
Syntax
'Declaration
 
Public Property ColumnHeaderVisible As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.ColumnHeaderVisible = value
 
value = instance.ColumnHeaderVisible
public bool ColumnHeaderVisible {get; set;}

Property Value

Boolean: true if displayed; false otherwise
Remarks

This property is equivalent to the ColumnHeader.Visible property.

Set the RowHeaderVisible property to set the display of row 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
Requirements

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

See Also

Reference

SheetView Class
SheetView Members
RowHeaderVisible Property

User-Task Documentation

Showing or Hiding Headers

 

 


Copyright © GrapeCity, inc. All rights reserved.