IFormControl.MDIMinimize

Syntax

MDIMinimize(Child: IFormControl);

Parameters

Child is the MDI child form, the window of which should be minimized.

Description

The MDIMinimize method minimizes the specified MDI child form within the parent form.

NOTE. The parent form itself should be passed as a parameter to minimize the parent form.
Sub
Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin

Self.MDIMinimize(Self);
End Sub
Button1OnClick;

See also:

IFormControl