해당 경로에 있는 엑셀파일의 sheet개수를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
strFilePath | STRING | 엑셀 파일 경로 |
Type | Description |
---|---|
STRING | sheet의 개수 |
function btn_getexcelsheetcount_on_mouseup()
{
// "C:xFramefilesNEW.xls" 경로에 있는 엑셀파일의 sheet 개수를 반환한다.
screen.alert(grid.getexcelsheetcount("C:xFramefilesNEW.xls"));
}