Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

leIsAnyMarkNetHighLighted

leIsAnyMarkNetHighLighted( 
w_windowId
)
=> t / nil

Description

Checks if the specified window has a marked net.

Arguments

w_windowId

Window ID of the window specified.

Value Returned

t

The function is successful.

nil

The function is not successful.

Examples

winId    = hiGetCurrentWindow()
pt       = '(1 5)
netName  = "net1" 

Marks a net from a shape at the specified point, pt:

leMarkNet(pt)
leIsAnyMarkNetHighLighted() => t
leUnmarkNet(pt) => t
leIsAnyMarkNetHighLighted() => nil 

Marks a new trace using the net name net1:

leMarkNet(netName)
leIsAnyMarkNetHighLighted() => t

Removes all traces:

leUnmarkNet() => t
leIsAnyMarkNetHighLighted() => nil 

Return to top
 ⠀
X