v10.0 (2012)
A collection of SchematicNode objects.
# 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 : |