<< Click to Display Table of Contents >>

OZUserActionCommand > InversePaper

OZUserActionCommandのtype中InversePaperは用紙方向を変更する時に発生し、返されるattrは次の通りです。

attr

説明

orientation

用紙方向(string)

reportname

レポート名(string)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "InversePaper") {

       alert(MyObj.orientation);

       ...

   }

}

...