CallbackAppendAutomationFilePerc delegate |
|
Remarks
Callback delegate invoked from a secondary thread during append automation sessions started through a call to the AppendAutomationExecute method to notify about the percentage of advancement of each single file added to the automation session: this callback can be set through a call to the CallbackAppendAutomationFilePercSet method.
In order to obtain the overall percentage of advancement the involved callback is the CallbackPercentage delegate.
For further details about callback delegates see the How to synchronize the container application through callback delegates tutorial.
Syntax
[Visual Basic] Public Delegate Sub CallbackAppendAutomationFilePerc ( nPercentage as Int16, nFileCounter as Int16 ) |
[C#] public delegate void CallbackAppendAutomationFilePerc ( Int16 nPercentage, Int16 nFileCounter ) |
[C++] public delegate void CallbackAppendAutomationFilePerc ( Int16 nPercentage, Int16 nFileCounter ) |
Parameter |
Description |
|
|
nPercentage |
Number representing the percentage of advancement for the given operation. |
nFileCounter |
Number representing the counter of the file currently being appended |