지정한 엑셀 파일의 시트 이름을 배열형태로 리턴하는 API이다. 파일이 존재하지 않는 경우, 파일선택다이얼로그를 표시한다.
| Parameters | Type | Description | 
|---|---|---|
| strFilePath | STRING | 파일 경로[옵션] | 
| strPassword | STRING | 파일 암호[옵션] | 
| Type | Description | 
|---|---|
| Array | 시트이름 배열 | 
전용 브라우저 환경에서만 동작합니다.
function btnTest_on_mouseup()
{
	// 엑셀파일의 시트 이름을 취득
	var arrsheetname = factory.xplusgetexcelsheetnames("D:\\test\\new.xlsx");
	if (!arrsheetname) { return; }
	screen.alert(arrsheetname.join("\n"));
}
function btnTest2_on_mouseup()
{
	// 파일 대화상자에서 선택한 엑셀파일의 시트 이름을 취득
	var arrsheetname = factory.xplusgetexcelsheetnames();
	if (!arrsheetname) { return; }
	screen.alert(arrsheetname.join("\n"));
}