geSetLimitedProbe
geSetLimitedProbe(
o_probeObject
t_dir
)
=> t / nil
Description
Sets the specified probe as a directed probe.
Arguments
|
An integer representing the direction. |
Value Returned
Examples
The following example shows how to probe the first net within the current window, edited cellview and define this probe as a limited probe.
myProbe = nil
when(window = hiGetCurrentWindow()
when(cellView = geGetEditCellView(window)
when(net = car(cellView~>nets)
myProbe = geMakeProbeWithColor(?window window ?name "myProbeName" ?object net
?color list( "y0" "drawing") ?probeType "net")
when(myProbe
geSetLimitedProbe(myProbe t)
)
)
)
)
Related Topics
Probe Functions
Return to top