enum InterruptReason in module com::sun::star::script::

(Global Index)

Syntax

enum InterruptReason;

Description

values used to specify the response for a scripting engine interrupt.

Values Summary

Cancel script excution was cancelled.

RuntimeError runtime error occur during script excution.

CompileError script has invalid syntax.

BreakPoint script stopped at a breakpoint.

Step script stops because only one scripting engine command was executed.

StepOver script stops because one step was executed.

StepOut script stops because it leaves a function.

StepStatement script stop because one step was executed.

Values Details



Cancel

Syntax

Cancel,

Description

script excution was cancelled.


RuntimeError

Syntax

RuntimeError,

Description

runtime error occur during script excution.


CompileError

Syntax

CompileError,

Description

script has invalid syntax.


BreakPoint

Syntax

BreakPoint,

Description

script stopped at a breakpoint.


Step

Syntax

Step,

Description

script stops because only one scripting engine command was executed.


StepOver

Syntax

StepOver,

Description

script stops because one step was executed.


StepOut

Syntax

StepOut,

Description

script stops because it leaves a function.


StepStatement

Syntax

StepStatement,

Description

script stop because one step was executed.

Top of Page