|
|
|
|
|
GridlinesVisible (Property) In french: QuadrillageVisible
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:
- in a window.
- in a report.
- for Diagram Editor controls.
// [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: - 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: - 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|