Delegate WndProcInvoker
A Delegate which is used for invoking the base implementation of WndProc of this form.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public delegate void WndProcInvoker(ref Message m);
Parameters
System.Windows.Forms.Message
m
|
Constructors
WndProcInvoker(Object, IntPtr)
Declaration
public WndProcInvoker(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(ref Message, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(ref Message m, AsyncCallback callback, object object)
Parameters
System.Windows.Forms.Message
m
|
System.AsyncCallback
callback
|
System.Object
object
|
Returns
System.IAsyncResult
|
EndInvoke(ref Message, IAsyncResult)
Declaration
public virtual void EndInvoke(ref Message m, IAsyncResult result)
Parameters
System.Windows.Forms.Message
m
|
System.IAsyncResult
result
|
Invoke(ref Message)
Declaration
public virtual void Invoke(ref Message m)
Parameters
System.Windows.Forms.Message
m
|