FarPoint.Win.Spread
ColumnHeaderVisible Property
See Also  Example
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : ColumnHeaderVisible Property


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

Syntax

Visual Basic (Declaration) 
Public Property ColumnHeaderVisible As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Boolean
 
instance.ColumnHeaderVisible = value
 
value = instance.ColumnHeaderVisible
C# 
public bool ColumnHeaderVisible {get; set;}

Return Value

Boolean: true if displayed; false otherwise

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

Remarks

This property is equivalent to the ColumnHeader.Visible property.

Set the RowHeaderVisible property to set the display of row headers.

See Also