NameNets (Schematic Editor)

Change names of nets on the schematic

UI Access Schematic>Auto-Name Wires
Parameters
Name Type Description
None    
Return Value None
Note:

For more information about the component name, schematic IDs, and formats, see the section Editor Scripting IDs.

 

Python Syntax

NameNets(

bool display, // Show Net names or not

["NAME:NetNames", _

"string:=", _ #Old name of the net (e.g. net_1)

string, _ #New name of the net (e.g. my_net)

...]) # Repeat for additional nets to change

Python Example

oEditor.NameNets (True, ["NAME:NetNames",

"Wire@net_2;41:1:=", "A[0]"])