|
|
|
|
|
ToolbarVisible (Property) In french: BarreOutilsVisible
The ToolbarVisible property is used to: - determine 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: - determine 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 : - determine 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 can display a toolbar or a ribbon. This property shows or hides the element chosen in the description window. If the "No bar" option is selected, the ToolbarVisible property will show 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
Determining if 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 displayed,
- 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.
- Code Editor control.
Showing or hiding 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.
- Code Editor control.
<Display>: Boolean - True to show the toolbar or the ribbon,
- 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|