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!

IEditorHost.RunDialog

Launches a modal dialog and returns when it is done, returning the dialog result. This method will handle placing the dialog in the appropriate place on the screen.

[Visual Basic]
Function RunDialog( _
   ByVal dialog As Form _
) As DialogResult
[C#]
DialogResult RunDialog(
   Form dialog
);
[C++]
DialogResult RunDialog(
   Form* dialog
) = 0;
[JScript]
function RunDialog(
   dialog : Form
) : DialogResult;

Parameters

dialog
to be shown

Return Value

dialog result

See Also

IEditorHost Interface | IEditorHost Members | System.WinForms.ComponentModel Namespace