Everything

common.ThrowExcept


This property sets or refers to whether to throw an exception during the Python function is executed.

[Specification format]

common.ThrowExcept = bool

[Setting(s)]

Setting

Description

bool

Set whether to throw an exception during the Python function is executed.

True: Throw an exception.

False: Do not throw an exception (default).

[Reference]

Current set value

[Detailed description]

-

This property sets or refers to whether to throw an exception during the Python function is executed.

-

To use the try-except statement, set bool to "True".

[Example of use]

>>>print common.ThrowExcept
False
>>>common.ThrowExcept = True