Delegate DataProgressEvent
Progress callback invoked periodically during a long export, reporting the number of
records processed out of the total; set docancel to true to abort the operation.
Assembly: Reportman.Drawing.dll
Syntax
public delegate void DataProgressEvent(object sender, int records, int count, ref bool docancel)
Parameters
| Type |
Name |
Description |
| object |
sender |
Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation. |
| int |
records |
Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation. |
| int |
count |
Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation. |
| bool |
docancel |
Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation. |
Constructors
View Source
DataProgressEvent(object, nint)
Declaration
public DataProgressEvent(object @object, nint method)
Parameters
Methods
View Source
BeginInvoke(object, int, int, ref bool, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, int records, int count, ref bool docancel, AsyncCallback callback, object @object)
Parameters
Returns
View Source
EndInvoke(ref bool, IAsyncResult)
Declaration
public virtual void EndInvoke(ref bool docancel, IAsyncResult result)
Parameters
View Source
Invoke(object, int, int, ref bool)
Declaration
public virtual void Invoke(object sender, int records, int count, ref bool docancel)
Parameters