lntIsStepTrace
lntIsStepTrace(
x_traceID
)
=> t / nil
Description
Checks whether the specified trace was created using Step mode.
Arguments
Value Returned
Example
win = hiGetCurrentWindow()
fig = css()
trace1 = lntAddTrace(win fig)
lntIsStepTrace(trace1) => nil
The SKILL function checks the specified trace and determines that the trace was created in normal mode.
# In the Net Tracer toolbar, select Add/Remove step trace from the mode selection drop-down menu and select the shape to be traced.
trace2 = 2 created
lntIsStepTrace(trace2) => t
The SKILL function checks the specified trace and determines that the trace was created in step mode.
Related Topics
Return to top