Everything

debugger.Timer.Information


This function displays conditional timer information.

[Specification format]

debugger.Timer.Information()

[Argument(s)]

None

[Return value]

List of conditional timer event information (see the TimerEventInfo class for detail)

[Detailed description]

-

This function displays conditional timer information displays in the following format.

timer-event-number timer-name state start-address - end-address

[Example of use]

>>>ti = debugger.Timer.Information()
1 PythonTimer0001 Enable main - sub
>>>print ti[0].Number
1
>>>print ti[0].Name
PythonTimer0001
>>>