<< Click to Display Table of Contents >>
OZUserActionCommand > CloseByThumbnailSection
OZUserActionCommandのtypeの中でCloseByThumbnailSectionはページのサムネイルのセクションバーに表示されたレポートを閉じるアイコンをクリックした際に発生し、返されるattrは次の通りです。
attr |
説明 |
close |
閉じるか否か(strAing) リターンする値:true、false |
index |
レポートのインデックス(int)。Zero-Based Index |
reportname |
レポート名(string) |
Reference
[閉じる]メニューをクリックしてレポートを閉じた場合、OZUserActionCommandのCloseが呼び出されてからCloseByThumbnailSectionが呼び出されます。
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "CloseByThumbnailSection") {
alert(MyObj.index);
...
}
}
...