QARenderAbort
You can use theQARenderAbortfunction to cancel any asynchronous drawing requests for a draw context.
#define QARenderAbort(drawContext) \ (drawContext)->renderAbort (drawContext)
drawContext- A draw context.
DESCRIPTION
TheQARenderAbortfunction immediately stops the draw context specified by thedrawContextparameter from processing any asynchronous drawing commands it is currently processing and causes it to discard any queued commands.The
QARenderAbortfunction returns a result code (of typeTQAError) indicating whether any errors have occurred since the previous call toQARenderStart. If all rendering commands completed successfully, the valuekQANoErris returned. If any other value is returned, you should assume that the rendered image is incorrect.SPECIAL CONSIDERATIONS
You should call eitherQARenderEndorQARenderAbort, but not both.