このビュー用に定義されている各Viewオブジェクトを含むViewCollectionを戻します。
ヒント:リレーショナルビューとして定義されているビューは、サブビューを持ちます。
/* This example creates a SDK Explorer and iterates over its sub views */ var layout = Desktop.ActiveLayout; var viewer = layout.CreateView("SDK Explorer", "Demo Viewer"); for( var i=0; i<viewer.Views.Count; i++ ) { var v = viewer.Views(i); Application.LogMessage( v.Name ); } // Expected result: //INFO : application info //INFO : om selection //INFO : omviewexplorer |