Windows 集合¶
Windows 集合提供了視窗對象的集合。 檢索視窗數目。 為指定索引的視窗檢索視窗對象。 支持 EmEditor 7.00 或之後的版本。屬性¶
示例¶
[JavaScript]¶
wnds = new Enumerator( shell.windows );
for( ; !wnds .atEnd(); wnds.moveNext() ){
wnd = wnds.item();
if( wnd.Caption == "Calculator" ){
alert( "Found Calculator window" );
break;
}
}
[VBScript]¶
For Each wnd In shell.windows
If wnd.Caption = "Calculator" Then
alert "Found Calculator window"
Exit For
End If
Next
版本¶