By default, Spread displays column headers and row headers. If you prefer, you can turn them off, and hide from view the row headers or column headers or both. The following figure shows a sheet that displays only column headers and hides the row headers.
If the sheet has multiple headers, using these instructions to hide the headers hides all header rows or header columns or both. If you want to hide specific rows or columns within a header, you must specify the row or column. For more details on hiding specific rows or columns, refer to Showing or Hiding a Row or Column.
The display of headers is done by simply setting a visible property of the header. This can be done in code with any of these properties:
Property | Descriptions |
---|---|
Visible property of RowHeader class or RowHeaderVisible property of SheetViewclass |
Set True to show the row header and False to hide the row header. |
Visible property of ColumnHeader class or ColumnHeaderVisible property of SheetView class |
Set True to show the column header and False to hide the column header. |
Set the ColumnHeaderVisible or RowHeaderVisible property for a Sheets object or the Visible property of the ColumnHeader or RowHeader object.
This example turns off the display of the column header. You can use either line of code.
C# |
Copy Code
|
---|---|
// Turn off the display of column headers. fpSpread1.Sheets[0].ColumnHeaderVisible = false; fpSpread1.Sheets[0].ColumnHeader.Visible = false; |
VB |
Copy Code
|
---|---|
' Turn off the display of column headers. fpSpread1.Sheets(0).ColumnHeaderVisible = False fpSpread1.Sheets(0).ColumnHeader.Visible = False |