Everything

debugger.ActionEvent.GetLine


This property sets or refers to the number of action event results.

[Specification format]

debugger.ActionEvent.GetLine = number

[Setting(s)]

Setting

Description

number

Set the number of action event results that can be held in the Python console (default: 10000).

[Reference]

Current set value

[Detailed description]

-

This property sets or refers to the number of action event results that can be held in the Python console.

-

If the number that was set is exceeded, action event results cannot be held. Deletion is performed from old action events. The valid range is from 5000 to 100000.

[Example of use]

>>>print debugger.ActionEvent.GetLine
10000
>>>debugger.ActionEvent.GetLine = 50000
>>>print debugger.ActionEvent.GetLine
50000