SchematicNodeCollection
 
 
 

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 a view
from sipyutils import *
sv = si().Desktop.ActiveLayout.CreateView2( 'Schematic', 'MySchematic' )
for node in sv.Nodes
        (x,y,w,h) = node.UIInfo
        log( 'Name: %s X:%d Y:%d W:%d, H:%d' % (node.Name, x, y,w,h)  )

See Also

Schematic SchematicNode