C++
virtual ACDBCORE2D_PORT Acad::ErrorStatus signingComplete( Acad::ErrorStatus es, const ACHAR * msg, bool* result );
Description
This function is invoked by ObjectDBX upon return from the internal routine that generates and attaches a digital signature during a DWG save. The signature may or may not have been successfully attached. The result of the signature operation is passed to this function as its first parameter. RealDWG host applications may use this function to react appropriately to the result of the signature operation. (For instance, the AutoCAD-specific AcDbHostApplicationServices implementation displays an appropriate text message on the command line if the signature operation fails, but returns without doing anything if the signature operation succeeds.)
The return value of this function is the same as its es parameter. In other words, the function looks at the es argument, takes whatever action is necessary, and then returns the same value.
The default implementation of this function (if it is not overridden) simply returns the es parameter value without displaying any messages.
Parameters
| Parameters | Description |
|---|---|
| es | Result of the signature operation |
| msg | Reserved for future use |
Returns
Reserved for future use