SchematicNodeCollection

導入

v10.0 (2012)

詳細

SchematicNodeオブジェクトのコレクションです。

メソッド

Filter Find GetAsText  
       

プロパティ

Countオペレータ Itemオペレータ    
       

Python の例

# 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 :

関連項目

Schematic SchematicNode