<< Click to Display Table of Contents >>

OZUserActionCommand > CloseAll

OZUserActionCommandのtype中CloseAllは全てのレポートを閉じる時に発生し、返されるattrは次の通りです。

attr

説明

reportname

レポート名(Array)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

   var MyObj = eval('(' + attr + ')');

   if(type == "CloseAll") {

       for(i = 0; i < MyObj.reportname.length; i++) {

           alert(MyObj.reportname[i]);

       }

   }

}

...