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

Adds an owned form to this form. Owned forms are other top level forms that are children of this form.

[Visual Basic]
Public Sub AddOwnedForm( _
   ByVal ownedForm As Form _
)
[C#]
public void AddOwnedForm(
   Form ownedForm
);
[C++]
public: void AddOwnedForm(
   Form* ownedForm
);
[JScript]
public function AddOwnedForm(
   ownedForm : Form
);

Parameters

ownedForm
Form to make owned by this form

See Also

Form Class | Form Members | System.WinForms Namespace