Table of Contents

MDITITLE method (Window)

Description

Arranges MDI child windows in a tiled format.

Syntax

SuccessFlag = Exec_Method( WindowID,       
                           "MDITILE",      
                           TileHorizontal, 
                           SkipDisabled )

Parameters

NameRequiredDescription
TileHorizontalNoIf TRUE$ then the MDI Child windows are tiled horizontally, otherwise they are tiled vertically.
SkipDisabledNoIf TRUE$ then any disabled MDI child windows are excluded from the tiling operation.

Returns

TRUE$ if the tiling operation was successful, FALSE$ otherwise.

Remarks

This method only applies to MDI frame windows.

The arguments passed to this method have been changed from previous versions of OpenInsight to support horizontal tiling and the "SkipDisabled" option simultaneously.

Example

 
$Insert Logical

   

   // Tile the MDI child windows vertically for the current MDI frame,

   // ignoring disabled windows.

   Call Exec_Method( @Window, "MDITILE", FALSE$, TRUE$ )
 
 
 

See Also

MDIFRAME property, MDICASCADE property.