<< Click to Display Table of Contents >>

OZUserActionCommand > AddArrow

OZUserActionCommandのtype中AddArrowはレポートに矢印を追加する時に発生し、返されるattrは次の通りです。

attr

説明

height

矢印の高さ(float)

reportname

レポート名(string)

width

矢印の幅(float)

xpos

矢印のX座標(float)

ypos

矢印のY座標(float)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

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

   if(type == "AddArrow") {

       alert(MyObj.height);

       ...

   }

}

...