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 GridlinesVisible property is used to:
  • Determine whether or not gridlines are visible in a control.
  • Show or hide gridlines in a control.
This property is available:
  • for Spreadsheet controls:
    • WINDEV in a window.
    • in a report.
  • for Diagram Editor controls.
Example
// [Gridlines hidden] button
PSHEET_SpreadsheetControl.GridlinesVisible = False
// The CBOX_Options control includes the following options:
// Library
// Styles
// Toolbar
// Grid
DIAGEDT_Diagram.LibraryPanelVisible = CBOX_Options[1]
DIAGEDT_Diagram.ModifierPanelVisible = CBOX_Options[2]
DIAGEDT_Diagram.ToolbarVisible = CBOX_Options[3]
DIAGEDT_Diagram.GridlinesVisible = CBOX_Options[4]
Syntax

Determining if gridlines are visible in a Spreadsheet control Hide the details

<Result> = <Control used>.GridlinesVisible
<Result>: Boolean
  • True if gridlines are visible in the control,
  • False otherwise.
<Control used>: Control name
Name of the control used. This control can be:
  • WINDEV a Spreadsheet control in a window,
  • a Spreadsheet control in a report.
  • a Diagram Editor item on a page or window.

Showing or hiding gridlines in a Spreadsheet control Hide the details

<Control used>.GridlinesVisible = <Visibility>
<Control used>: Control name
Name of the control used. This control can be:
  • WINDEV a Spreadsheet control in a window,
  • a Spreadsheet control in a report.
  • a Diagram Editor item on a page or window.
<Visibility>: Boolean
  • True if the gridlines must be visible in the Spreadsheet control,
  • False otherwise.
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/29/2022

Send a report | Local help