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 ModifierPanelVisible property is used to:
  • determine if the "Modifier" panel is displayed in a Diagram Editor control.
  • show or hide the "Modifier" panel in a Diagram Editor control.
Reminder: The "Modifier" panel in a Diagram Editor control contains the options for modifying the selected element (color, line thickness, etc.). This panel is displayed on the right side of the Diagram Editor control.
Example
// 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 the "Modifier" panel is displayed Hide the details

<Result> = <Diagram Editor control>.ModifierPanelVisible
<Result>: Boolean
  • True if the "Modifier" panel is visible,
  • False otherwise.
<Diagram Editor control>: Control name
Name of the Diagram Editor control used.

Show or hide the "Modifier" panel Hide the details

<Diagram Editor control>.ModifierPanelVisible = <Display>
<Diagram Editor control>: Control name
Name of the Diagram Editor control used.
<Display>: Boolean
  • True to show the "Modifier" panel,
  • False otherwise.
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/29/2022

Send a report | Local help