struct FinishTaskEvent in module com::sun::star::task::

(Global Index)

Syntax

struct FinishTaskEvent : com::sun::star::lang::EventObject ;

Description

This event contains the reasons and the data for the XEngineListener::finished() method.

Field Summary

Finish Why does the script terminate.

Result Contain the result of the task if the finish reason is OK. The type of the result is task dependend.
If the finish reason is CANCEL or EORROR, Result may specify the reason. The type is task dependend.
Contain the ResourceLockException if the finish reason is LOCKEXCEPTION.

Field Details



Finish

Syntax

com::sun::star::task::TaskFinishReason Finish;

Description

Why does the script terminate.


Result

Syntax

any Result;

Description

Contain the result of the task if the finish reason is OK. The type of the result is task dependend.
If the finish reason is CANCEL or EORROR, Result may specify the reason. The type is task dependend.
Contain the ResourceLockException if the finish reason is LOCKEXCEPTION.

Top of Page