Delegate NextColumnFocusEvent
Callback that lets a handler override which column receives focus next when the user
advances with Enter/Tab; the target column index is returned through nextcolumn.
Assembly: Reportman.Drawing.Forms.dll
public delegate void NextColumnFocusEvent(object sender, int currentcolumn, ref int nextcolumn)
Parameters
| Type |
Name |
Description |
| object |
sender |
Callback that lets a handler override which column receives focus next when the user advances with Enter/Tab; the target column index is returned through nextcolumn. |
| int |
currentcolumn |
Callback that lets a handler override which column receives focus next when the user advances with Enter/Tab; the target column index is returned through nextcolumn. |
| int |
nextcolumn |
Callback that lets a handler override which column receives focus next when the user advances with Enter/Tab; the target column index is returned through nextcolumn. |
Constructors
View Source
Declaration
public NextColumnFocusEvent(object @object, nint method)
Parameters
Methods
View Source
Declaration
public virtual IAsyncResult BeginInvoke(object sender, int currentcolumn, ref int nextcolumn, AsyncCallback callback, object @object)
Parameters
Returns
View Source
Declaration
public virtual void EndInvoke(ref int nextcolumn, IAsyncResult result)
Parameters
View Source
Declaration
public virtual void Invoke(object sender, int currentcolumn, ref int nextcolumn)
Parameters
| Type |
Name |
Description |
| object |
sender |
|
| int |
currentcolumn |
|
| int |
nextcolumn |
|