Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

schIsWire

schIsWire( 
d_wireId 
)
=> t / nil

Description

Checks if the specified object is a wire.

Arguments

d_wireId

The object to be confirmed as a wire on the net

Value Returned

t

Confirmed that the given object is a wire on a net.

nil

Check was unsuccessful.

Examples

Example: Click a wire segment in a schematic window, followed by these commands:

obj = css()
schIsWire(obj)

> t

Click an instance in a schematic window, followed by the same commands:

obj = css()
schIsWire(obj)

> nil


Return to top
 ⠀
X