Delegate ExportCompletedEventHandler
Represents the method that will handle the report viewer export completed event
Assembly: BoldReports.Wpf.dll
Syntax
public delegate void ExportCompletedEventHandler(object sender, byte[] e);
Parameters
Type |
Name |
Description |
System.Object |
sender |
The source of the event.
|
System.Byte[] |
e |
An Byte that contains the exported file data.
|
Constructors
ExportCompletedEventHandler(Object, IntPtr)
Declaration
public ExportCompletedEventHandler(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(Object, Byte[], AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, byte[] e, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
System.Object |
sender |
|
System.Byte[] |
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, Byte[])
Declaration
public virtual void Invoke(object sender, byte[] e)
Parameters
Type |
Name |
Description |
System.Object |
sender |
|
System.Byte[] |
e |
|