|
|
|
|
|
ModifierPanelVisible (Property) In french: PanneauModifieurVisible
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. // 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|