<< Click to Display Table of Contents >>
OZUserActionCommand > AddLine
OZUserActionCommandのtype中AddLineはレポートに線を追加する時に発生し、返される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 == "AddLine") {
alert(MyObj.height);
...
}
}
...