Spread for ASP.NET 11 Product Documentation
Visible Property (ColumnHeader)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ColumnHeader Class : Visible Property
Gets or sets whether the column header is visible.
Syntax
'Declaration
 
Public Property Visible As Boolean
'Usage
 
Dim instance As ColumnHeader
Dim value As Boolean
 
instance.Visible = value
 
value = instance.Visible
public bool Visible {get; set;}

Property Value

Boolean: true if column header is displayed; false otherwise
Example
This example hides the column headers.
FarPoint.Web.Spread.ColumnHeader colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.Visible = False;  
Dim colhdr As FarPoint.Web.Spread.ColumnHeader
colhdr = FpSpread1.ActiveSheetView.ColumnHeader
colhdr.Visible = False
See Also

Reference

ColumnHeader Class
ColumnHeader Members

User-Task Documentation

Customizing the Appearance of Headers