Delegate Kanban.KanbanEventHandler
It displays the list of server-side events available in the ASP Kanban control and the arguments that are obtained server-side.
Assembly: Syncfusion.EJ.Web.dll
Syntax
public delegate void KanbanEventHandler(object sender, KanbanEventArgs e);
Parameters
Type |
Name |
Description |
System.Object |
sender |
The sender parameter of all the server-side events returns the Kanban model details.
|
KanbanEventArgs |
e |
The Syncfusion.JavaScript.Web.KanbanEventArgs arguments provide information specific to this event.
|
Constructors
KanbanEventHandler(Object, IntPtr)
Declaration
public KanbanEventHandler(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(Object, KanbanEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, KanbanEventArgs e, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
System.Object |
sender |
|
KanbanEventArgs |
e |
|
System.AsyncCallback |
callback |
|
System.Object |
object |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Invoke(Object, KanbanEventArgs)
Declaration
public virtual void Invoke(object sender, KanbanEventArgs e)
Parameters