트리그리드 » Api
  
getexceldownloadparam
  
Description
가장 최근에 수행한 엑셀 다운로드 옵션 정보 오브젝트를 반환한다.
  
  
Return Value
  
    
      | Type | 
      Description | 
    
  
  
    
      | INSTANCE | 
      가장 최근에 엑셀 다운로드 파라미터 정보 오브젝트 또는 null | 
    
  
Example
function btn_downloadexcel_on_mouseup(objInst)
{
    grdList.downloadexcel("download.xlsx");
}
function grdList_on_filesave(objInst, nResult, strCode, strMsg, strFileName, nSaveStartTime, nSaveEndTime)
{
	var excel_download_param = this.grdList.getexceldownloadparam();
	if (excel_download_param != null) {
		console.log(excel_download_param);
	}
}
  
See Also
downloadexcelex
  
Viewer Ver.
24.4.19.1
  
Update Date
 20240419