ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The HeaderVisible property is used to:
  • Determine if the row and column headers are displayed in a Spreadsheet control.
  • Show or hide the row and column headers in a Spreadsheet control.
Reminder:
  • In a Spreadsheet control, the headers are used to easily identify the cells.
  • This property corresponds to the "Display headers of rows and columns" option in the "Details" tab of the Spreadsheet control description window.
Example
IF CBOX_Header THEN
PSHEET_Spreadsheet.HeaderVisible = True
ELSE
PSHEET_Spreadsheet.HeaderVisible = False
END

Determining if the row and column headers are visible Hide the details

<Result> = <Spreadsheet control>.HeaderVisible
<Result>: Boolean
  • True if the headers are visible,
  • False otherwise.
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.

Showing or hiding the row and column headers Hide the details

<Spreadsheet control>.HeaderVisible = <Header Status>
<Spreadsheet control>: Control name
Name of the Spreadsheet control to be used.
<Header Status>: Boolean
  • True if the header is visible,
  • False otherwise.
Related Examples:
The Spreadsheet control Unit examples (WINDEV): The Spreadsheet control
[ + ] Using the Spreadsheet control.
This example explains how to:
- load an xlsx file in a spreadsheet control,
- save the spreadsheet in a file,
- fill the control with data coming from the database,
- insert rows, columns,
- access the cells and handle them (modify their value, their style, ...),
- enter formulas,
- ...
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help