geSetProbeNetFilter
geSetProbeNetFilter(
d_cellview
t_mode
l_netNames
)
=> t / nil
Description
Sets a net filtering for probe on the given cellview.
Arguments
|
d_cellview
|
Database ID of the cellview on which to set the filter settings.
|
|
t_mode
|
The mode, Hide or Show.
|
|
l_netNames
|
The list of net names handled by Highlight Options filtering. If the t_mode is set to Show, during the next redraw only net probes that have nets in the provided list of net names are displayed. If t_mode is set to Hide, on the next redraw corresponding net probes will not be displayed.
|
Value Returned
|
t
|
The probe net filtering is set.
|
|
nil
|
The probe net filtering is not set.
|
Examples
Sets net filtering to display probes only for VDD and VSS nets.
window = hiGetCurrentWindow()
cellView = geGetEditCellView(window)
geSetProbeNetFilter(cellView "Show" list("VDD" "VSS"))
Related Topics
Probe Functions
Return to top