Description
Gets whether the MaximizeAllTabbedSheets option of the MDI window is enabled or not.
Applies to
Window control
Syntax
controlname.IsMaximizeAllTabbedSheetsEnabled ( )
Return value
Boolean.
Returns TRUE if the MaximizeAllTabbedSheets option is enabled and FALSE if it is not.
If the MaximizeAllTabbedSheets option is enabled by default, but subsequent user operations cause the sheet no longer at the maximized state (for example, the user clicks the Restore or Minimize icon at the top right corner of the window, or clicks a menu that executes the ArrangeSheets method of the MDI frame), then FALSE is returned.
Usage
The MaximizeAllTabbedSheets option can only be enabled or disabled in the IDE. When the MaximizeAllTabbedSheets option is enabled, the sheets will be displayed at the maximum size. For more information, refer to the section called “Displaying sheets in tabbed view” in Application Techniques.
Examples
Boolean lb_IsMax lb_IsIsMax = w_1.IsMaximizeAllTabbedSheetsEnabled()
See also