<< Click to Display Table of Contents >>

OZUserActionCommand > CloseByThumbnail

OZUserActionCommand의 type 중 CloseByThumbnail은 페이지 축소판의 팝업 메뉴 중 보고서 닫기를 클릭한 경우 발생하며, 리턴되는 attr은 다음과 같습니다.

attr

설명

close

보고서 닫힘 여부(string)

index

보고서 인덱스(int). Zero-Based Index

reportname

보고서 이름(string)

Reference

보고서 닫기 메뉴를 클릭하여 보고서가 닫힌 경우 OZUserActionCommand의 Close가 호출된 후 CloseByThumbnail이 호출됩니다.

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

   var MyObj = eval('(' + attr + ')');

   if(type == "CloseByThumbnail") {

       alert(MyObj.close);

       ...

   }

}

...