<< Click to Display Table of Contents >>

OZUserActionCommand > MovePage

OZUserActionCommandのtype中MovePageはページを移動する時に発生し、返されるattrは次の通りです。

attr

説明

direction

移動方向(string)

index

移動されたページ番号(int)

reportname

レポート名(string)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "MovePage") {

       alert(MyObj.direction);

       ...

   }

}

...