|
|
|
|
DynamicTab (Property) In french: OngletDynamique
The DynamicTab property is used to: - Find out the type of a Tab control (static tab or dynamic tab).
- Modify the type of a Tab control (static tab or dynamic tab).
Reminder: A dynamic Tab control is a Tab control that supports the addition, the deletion and the move of panes. Remark: This property replaces the TabMDI property.
// Checks whether the tab is a dynamic tab IF TAB_Tab1.DynamicTab = True THEN // Close all the panes TabCloseAll(TAB_Tab1) END
Syntax
Finding out whether a Tab control is a dynamic tab Hide the details
<Result> = <Tab control>.DynamicTab
<Result>: Boolean - True if the Tab control is a dynamic tab,
- False if the Tab control is a static tab.
<Tab control>: Control name Name of the Tab control to be used.
Modifying the type of a Tab control Hide the details
<Tab control>.DynamicTab = <Type of Tab control>
<Tab control>: Control name Name of the Tab control to be used. <Type of Tab control>: Boolean - True to get a dynamic Tab control,
- False to get a static Tab control.
Remarks Dynamic Tab control If the DynamicTab property is set to True: - the TabXXX functions can be called on the control.
- the [] operator on the tab must called with the alias of the pane.
- the end user can:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|