Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

geSetLimitedProbe

geSetLimitedProbe( 
o_probeObject 
t_dir 
)
=> t / nil

Description

Sets the specified probe as a directed probe.

Arguments

o_probeObject

Database ID of the probe.

t_dir

An integer representing the direction.
Valid Values: 0-inputOutput; 1-input; 2-output

Value Returned

t

The probe is set as a directed probe.

nil

The probe is not set as a directed probe.

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
 ⠀
X