Method Execute
Execute(object, int, ref int)
Displays a goto dialog.
public virtual bool Execute(object sender, int lines, ref int line)
Parameters
sender
objectSpecifies object owning the dialog.
lines
intNumber of lines in the control's text content.
line
intIndex of the current line. When dialog executes receives index of the new line.
Returns
- bool
DialogResult.OK if the user clicks OK in the dialog box; otherwise, DialogResult.Cancel.
Execute(object, int, ref int, Window)
Displays a goto dialog.
public virtual bool Execute(object sender, int lines, ref int line, Window owner)
Parameters
sender
objectSpecifies object owning the dialog.
lines
intNumber of lines in the control's text content.
line
intIndex of the current line. When dialog executes receives index of the new line.
owner
WindowAny object that implements IWin32Window that represents the top-level window that will own the modal dialog box.
Returns
- bool
DialogResult.OK if the user clicks OK in the dialog box; otherwise, DialogResult.Cancel.
Execute(object, int, ref int, OwnerWindow)
Displays a goto dialog.
public virtual bool Execute(object sender, int lines, ref int line, OwnerWindow owner)
Parameters
sender
objectSpecifies object owning the dialog.
lines
intNumber of lines in the control's text content.
line
intIndex of the current line. When dialog executes receives index of the new line.
owner
OwnerWindowAny object that implements IWin32Window that represents the top-level window that will own the modal dialog box.
Returns
- bool
DialogResult.OK if the user clicks OK in the dialog box; otherwise, DialogResult.Cancel.