Xbasic
UI_DLG_IS_MINIMIZED Function
Syntax
Result_Flag as L = UI_DLG_IS_MINIMIZED(C title)
Arguments
- Result_Flag
Indicates whether the dialog box is minimized. .T. = is minimized .F. = is not minimized
- title
The name of the dialog box.
Description
Returns true if the named xdialog is minimized.
Discussion
The UI_DLG_IS_MINIMIZED() function indicates whether the specified modeless dialog is minimized.
Example
The following example creates a modeless dialog box, then tests to see if it is minimized.
ui_modeless_dlg_box("Visible Xdialog", <<%dlg% <20,3Click Here> %dlg%) ? ui_dlg_is_maximized("Visible Xdialog") = .F.
Limitations
Desktop applications only.
See Also