Opens the specific field options dialog box.

ShowDialog()

public DialogResult ShowDialog()

ShowDialog(Bool)

public DialogResult ShowDialog(bool rightToLeft);

ShowDialog(Object)

public DialogResult ShowDialog(object owner);

ShowDialog(Object, Bool)

public DialogResult ShowDialog(object owner, bool rightToLeft);

Parameters

Parameter Description
rightToLeft Sets the dialog layout flow direction. True sets the layout to RTL, false sets the layout to LTR.
owner Sets the dialog's owner window. For WPF dialogs this must be an object of type System.Windows.Window. For Windows Forms dialogs this must be an object implementing the interface System.Windows.Forms.IWin32Window (e. g. a Form).