This function sets a conditional trace.
Specify a condition of a conditional trace. See the TraceCondition class for creating a conditional trace. |
Set trace event number (numerical value)
>>>tc = TraceCondition() >>>tc.StartAddress = "main" >>>tc.EndAddress = "chData" >>>tc.EndData = 0x20 >>>tc.EndTraceType = TraceType.Write >>>ts_number = debugger.Trace.Set(tc) 1 >>>print ts_number 1 |