|
|
|
|
|
Undocked (Property) In french: Détaché
The Undocked property is used to determine if a pane of a Tab or Ribbon control is undocked.
IF RIBBON_Menu[2].Undocked THEN
RIBBON_Menu = 3
ELSE
RIBBON_Menu = 2
END
FOR i = 1 TO TAB_Option.Count
IF TAB_Option[i].Undocked THEN RETURN True
END
RETURN False
Syntax
Determining if a pane is undocked Hide the details
<Result> = <Control used>.Undocked
<Result>: Boolean - True if the pane is undocked,
- False otherwise.
<Control used>: Control name Name of the pane of the Tab or Ribbon control to use. The following syntax must be used:
<Control name>[Element index] For example: Remarks - A pane is undocked if it is in a free window different from the window where the control is.
- To be undocked from a Tab control, the pane must be dynamic.
- To undock a pane from a Ribbon control, check the "Undockable tabs" option in the control description window.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|