CommonDialog.RunDialog(IntPtr) Method

Definition

When overridden in a derived class, is called to display a particular type of Win32 common dialog.

protected:
 abstract bool RunDialog(IntPtr hwndOwner);
protected abstract bool RunDialog (IntPtr hwndOwner);
abstract member RunDialog : nativeint -> bool
Protected MustOverride Function RunDialog (hwndOwner As IntPtr) As Boolean

Parameters

hwndOwner
IntPtr

nativeint

Handle to the window that owns the dialog box.

Returns

If the user clicks the OK button of the dialog that is displayed (e.g. OpenFileDialog, SaveFileDialog), true is returned; otherwise, false.

Remarks

The dialog that is eventually shown is assigned an owner window, which is specified by the hwndOwner parameter.

Applies to