NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form.IsMDIChild

Gets a value indicating whether the form is a multiple document interface (MDI) child form.

[Visual Basic]
Public ReadOnly Property IsMDIChild As Boolean
[C#]
public bool IsMDIChild {get;}
[C++]
public: __property bool get_IsMDIChild();
[JScript]
public function get IsMDIChild() : Boolean;

Property Value

true if the form is an MDI child form; otherwise false.

Remarks

At run time, MDI child forms are displayed inside the client area of an MDI parent form. An MDI child form can be maximized, minimized, and moved within the MDI parent form. To create an MDI child form, assign the Form that will be the MDI parent form to the MDIParent property of the child form. You can use the IsMDIContainer property to determine if a form is an MDI parent form.

You can use the IsMDIChild property to determine if a form returned by a method or property is an MDI child form or a standard form in your application such as a dialog box.

Note   All MDI child forms have sizable borders, a control-menu box, and minimize and maximize buttons, regardless of the settings of the BorderStyle, ControlBox, MinimizeBox, and MaximizeBox properties.

See Also

Form Class | Form Members | System.WinForms Namespace | MDIParent | MDIChildren | IsMDIContainer