Applies to
Window controls
Description
Displays all tabbed sheets at the maximum size. This property takes effect only when the TabbedView property is True.
Values are:
TRUE -- Displays all tab pages at the maximum size.
FALSE -- (Default) Displays all tab pages at the original or default size.
Data type
Boolean.
Usage
In a painter
To display all tab pages at the maximum size:
-
Select the MaximizeAllTabbedSheets check box on the General page of the window's Properties view.
In scripts
This property takes a boolean value. The following example specifies that all tab pages in w_mdi will display at the maximum size.
w_mdi.MaximizeAllTabbedSheets = TRUE
Setting MaximizeAllTabbedSheets to TRUE does not guarantee that every sheet window will open at the maximum size. Some operations may cause the sheet window no longer at the maximized state, for example, when MDI frame's ArrangeSheets(Cascade) or ArrangeSheets (Layered) method is executed, or when the user clicks the Restore or Minimize icon on the sheet window; in such cases, the subsequently opened sheets may appear in a cascaded, layered, or minimized layout.


