lntGetAllTraces
lntGetAllTraces(d_cellviewID) =>l_traceIDs/ nil
Description
Lists all the traces in the specified cellview.
Arguments
Value Returned
|
Cellview contains no traces or the operation was unsuccessful. |
Example
myTraces = nil
when(window = hiGetCurrentWindow()
when(cellView = geGetEditCellView(window)
myTraces = lntGetAllTraces(cellView)
when(myTraces
foreach(trace myTraces lntGetTraceInfo(trace))
)
)
)
Lists the IDs of all the traces in current cellview.
Related Topics
Return to top