<< Click to Display Table of Contents >>
OZUserActionCommand > PrintableComp
OZUserActionCommandのtype中PrintableCompはコンポーネントが印刷できるか否かの設定を変更する時に発生し、返されるattrは次の通りです。
attr |
説明 |
compindex |
コンポーネントのインデックス(int)。 One-Based Index |
compname |
コンポーネント名(string) |
comptype |
コンポーネントタイプ(string) メモは"label"として返されます |
pageindex |
ページのインデックス(int)。 One-Based Index |
reportindex |
レポートのインデックス(int)。 Zero-Based Index |
reportname |
レポート名(string) |
state |
印刷しない(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "PrintableComp") {
alert(MyObj.compindex);
...
}
}
...