엑셀 업로드 최대 데이터 행 excel_upload_row 속성값을 리턴하는 API이다.
| Type | Description | 
|---|---|
| long | 엑셀 업로드 최대행 갯수 (excel_upload_row 속성값) | 
function btn_on_mouseup()
{
    screen.alert(grd.getexceluploadrow());	
    this.grd.setexceluploadrow(20);
    screen.alert(grd.getexceluploadrow());	
}