Remarks
Occurs at the end of an append automation session. The append automation session is started through a previous call to the AppendAutomationExecute method.
Syntax
[Visual Basic]
Public Event AppendAutomationDone As AppendAutomationDoneEventHandler
|
|
[C#]
public event AppendAutomationDoneEventHandler AppendAutomationDone;
|
|
[C++]
public: __event AppendAutomationDoneEventHandler AppendAutomationDone;
|
|
Event Data
The event handler receives an argument of type AppendAutomationDoneEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nResult
|
The result of the append session.
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to see the error code meaning
|
enumErrorCodes.ERR_NOERROR (0)
|
The append session was completed successfully.
|
|
|