Everything

debugger.ActionEvent.Disable


This function disables an action event setting.

[Specification format]

debugger.ActionEvent.Disable(actionEventNumber = "")

[Argument(s)]

Argument

Description

actionEventNumber

Specify the action event number to disable.

[Return value]

If an action event setting was disabled successfully: True

If there was an error when disabling an action event setting: False

[Detailed description]

-

This function disables the action event specified by actionEventNumber.

-

If actionEventNumber is not specified, then events of all action event numbers will be disabled.

[Example of use]

>>>debugger.ActionEvent.Disable(1)
True
>>>debugger.ActionEvent.Disable()
True
>>>