This class holds XRunBreak information (return value of the debugger.XRunBreak.Refer and debugger.Interrupt.ReferTimer functions).
XRunBreakInfo is a class, and it is passed as the return value when the debugger.XRunBreak.Refer or debugger.Interrupt.ReferTimer function is executed. |
>>>debugger.XRunBreak.Set(10, TimeType.S, True) >>>info = debugger.XRunBreak.Refer() 10Second Periodic >>>print info.Value 10 >>>print info.TimeType S >>>print info.IsPeriodic True >>> |