<< Click to Display Table of Contents >>

OZUserActionCommand > Zoom

OZUserActionCommandのtype中Zoomはレポートを拡大、縮小、リセットする時に発生し、返されるattrは次の通りです。

attr

説明

pagedisplay

ページ表示(string)

reportname

レポート名(string)

viewmode

ビューモード(string)

zoom

拡大、縮小、リセット(string)

zoomvalue

レポートの拡大倍率(int)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "Zoom") {

       alert(MyObj.pagedisplay);

       ...

   }

}

...