Delegate MetaFileLoadProgress
Event launched when reading a MetaFile, so, on large metafiles (or when low bandwidth)
you can show load progress to the user
Assembly: Reportman.Drawing.dll
public delegate void MetaFileLoadProgress(int pages, int pagecount, ref bool docancel)
Parameters
| Type |
Name |
Description |
| int |
pages |
Current page being read
|
| int |
pagecount |
Total page count
|
| bool |
docancel |
Set this reference variable to true to cancel the MetaFile loading
|
Constructors
Declaration
public MetaFileLoadProgress(object @object, nint method)
Parameters
Methods
Declaration
public virtual IAsyncResult BeginInvoke(int pages, int pagecount, ref bool docancel, AsyncCallback callback, object @object)
Parameters
Returns
Declaration
public virtual void EndInvoke(ref bool docancel, IAsyncResult result)
Parameters
Declaration
public virtual void Invoke(int pages, int pagecount, ref bool docancel)
Parameters
| Type |
Name |
Description |
| int |
pages |
|
| int |
pagecount |
|
| bool |
docancel |
|