<< Click to Display Table of Contents >>
OZUserActionCommand > CloseByThumbnailSection
OZUserActionCommand의 type 중 CloseByThumbnailSection은 페이지 축소판의 섹션바에 표시된 보고서 닫기 아이콘을 클릭한 경우 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
close |
보고서 닫힘 여부(string) |
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.close);
...
}
}
...