geSetNetNameDisplayFilter
geSetNetNameDisplayFilter(
d_cellview
t_mode
l_netNames
)
=> t / nil
Description
Sets a net name filtering on the given cellview. You can control which nets are displayed or not by the net name display feature.
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 filtering. If t_mode is set to Show, the net name display only displays nets in the provided list of net names. If t_mode is set to Hide, the net name display shows any nets names except the net names provided in the list of net names.
|
Value Returned
|
t
|
The net name filtering is set.
|
|
nil
|
The net name filtering is not set.
|
Examples
window = hiGetCurrentWindow()
cellView = geGetEditCellView(window)
geSetNetNameDisplayFilter(cellView "Show" list("VDD" "VSS"))
Related Topics
Edit and Display Functions
Return to top