|
|
|
|
ToolbarVisible (Property) In french: BarreOutilsVisible
The ToolbarVisible property is used to: - know if the toolbar or the ribbon is displayed in a control.
- show or hide the toolbar or the ribbon in a control.
In a Spreadsheet control, the ToolbarVisible property is used to: - know if the toolbar or the ribbon is displayed.
- show or hide the toolbar or the ribbon.
In a Word Processing, Image Editor, PDF Reader, HTML Editor, or Diagram Editor control, the ToolbarVisible property is used to : - know if the ribbon is displayed.
- display a ribbon.
Reminder: This property corresponds to the option: - "Toolbar" in the "Details" tab of the Spreadsheet control description window. You have the ability to display a toolbar or a ribbon. This property is used to display or hide the element chosen in the description window. If the "No bar" option is selected, the ToolbarVisible property will be used to display or hide the toolbar.
- "With ribbon", in the "General" tab of the description window of Word Processing, Image Editor, HTML Editor, Diagram Editor or PDF Reader controls.
IF CBOX_Toolbar THEN PSHEET_Spreadsheet.ToolbarVisible = True ELSE PSHEET_Spreadsheet.ToolbarVisible = False END
Syntax
Finding out whether a toolbar (or the ribbon) is displayed in the control Hide the details
<Result> = <Control used>.ToolbarVisible
<Result>: Boolean - True if the toolbar (or the ribbon) is visible,
- False otherwise.
<Control used>: Control name Name of the control to be used: - Spreadsheet control.
- Word Processing control.
- Image Editor control.
- PDF Reader control.
- HTML Editor control.
- Diagram Editor control.
Displaying (or not) a toolbar (or a ribbon) in a control Hide the details
<Control used>.ToolbarVisible = <Display>
<Control used>: Control name Name of the control to be used: - Spreadsheet control.
- Word Processing control.
- Image Editor control.
- PDF Reader control.
- HTML Editor control.
- Diagram Editor control.
<Display>: Boolean - True to make the toolbar (or the ribbon) visible,
- False otherwise.
Related Examples:
|
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, - ...
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|