<< Click to Display Table of Contents >>

OZUserActionCommand > AddCircle

OZUserActionCommandのtype中AddCircleはレポートに円を追加する時に発生し、返される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 == "AddCircle") {

       alert(MyObj.height);

       ...

   }

}

...