geSetProbeDirection
geSetProbeDirection(
o_probeObject
t_dir
)
=> t / nil
Description
Sets the specified probe as a directed probe.
Arguments
|
An integer representing the direction. Valid Values: |
Value Returned
Examples
The following example depicts how to probe the first net within the current window, edited cellview and define this probe as a FadeIn probe. This probes all nets driven by this net.
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
geSetProbeDirection(myProbe 1)
)
)
)
)
Related Topics
Probe Functions
Return to top