lntGetTraceInfo
lntGetTraceInfo(x_traceID) =>l_paramList/ nil
Description
Returns information for a specified trace. The returned information contains the trace container, its name, color, and visibility status, and the number of chased shapes.
Arguments
Value Returned
|
List of parameters for the specified trace; for example: (db:0x31670f9a "Trace1" "white" t 3) |
|
Example
myTraces = nil
when(window = hiGetCurrentWindow()
when(cellView = geGetWindowCellView(window)
myTraces = lntGetAllTraces(cellView)
when(myTraces
foreach(mapcar trace myTraces lntGetTraceInfo(trace))
)
)
)
Returns information about all the traces in the current cellview.
Related Topics
Return to top