v10.0 (2012)
A collection of SchematicNode objects.
# Logs all schematic nodes information from a view from siutils 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) ) |