SchematicNodeCollection

導入

v10.0 (2012)

詳細

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

メソッド

Filter Find GetAsText  
       

プロパティ

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

Python の例

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

関連項目

Schematic SchematicNode