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.IsMDIContainer

Gets or sets a value indicating whether the form is a container for multiple document interface (MDI) child forms.

[Visual Basic]
Public Property IsMDIContainer As Boolean
[C#]
public bool IsMDIContainer {get; set;}
[C++]
public: __property bool get_IsMDIContainer();
public: __property void set_IsMDIContainer(bool);
[JScript]
public function get IsMDIContainer() : Boolean;
public function set IsMDIContainer(Boolean);

Property Value

true if the form is a container for MDI child forms; otherwise false. The default is false.

Remarks

This property changes the display and behavior of the form to an MDI parent form. When this property is set to true, the form will display a sunken client area with a raised border. All MDI child forms assigned to the parent form are displayed within its client area.

See Also

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