SchematicNodeCollection

Introduced

v10.0 (2012)

Description

A collection of SchematicNode objects.

Methods

Filter Find GetAsText  
       

Properties

Count operator Item operator    
       

Examples

Python Example

# Logs all schematic nodes information
from siutils import *
# Creates a schematic view
schema = si.Desktop.ActiveLayout.CreateView( "Schematic" )
for node in schema.Nodes
        log( 'Name: %s X:%d Y:%d' % (node.Name, node.PosX, node.PosY) )
# Expected result:
#INFO :

See Also

Schematic SchematicNode