<< Click to Display Table of Contents >>

OZUserActionCommand > Close

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

attr

説明

index

レポートのインデックス(int)。Zero-Based Index

reportname

レポート名(string)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "Close") {

       alert(MyObj.index);

       ...

   }

}

...