Distributed Tuning Objects Guide (v11)

DtoOpenFiles コレクション

現在開いているファイルを表す DtoOpenFile オブジェクトのコレクションです。

プロパティ

Count
コレクション内のメンバー数を返します。
Item
DtoOpenFiles コレクションの特定のメンバーを返します。

メソッド

なし

備考

Count プロパティを使用してコレクション内のメンバー数を調べます。

DtoMonitor オブジェクトのプロパティを使って DtoOpenFiles コレクションを取得することができます。

'セッションのインスタンスを作成して接続する 
Dim my_session as new DtoSession 
Dim result as DtoResult 
result = my_session.Connect("myserver", "username", "password") 
 
'セッションからモニター オブジェクトを取得する 
Dim my_monitor as DtoMonitor 
Set my_monitor = my_session.Monitor 
 
'モニターから開いているファイルを取得する 
Dim my_openfiles as DtoOpenFiles 
Set my_openfiles = my_monitor.OpenFiles 

関連項目

DtoMonitor オブジェクト


DtoMonitor オブジェクト

DtoOpenFile オブジェクト