작업 대상 엑셀 시트를 지정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nSheetIndex | long | Zero-Based 시트 인덱스 | 
| Type | Description | 
|---|---|
| BOOL | 정상 처리 여부 | 
function btn_itemtext_on_click(objInst)
{
	// 작업 대상 Sheet 인덱스를 지정함
	obj_excel.setselectsheet(0);
	
	factory.consoleprint(obj_excel.getcellvalue(5, 5));
	factory.consoleprint(obj_excel.getcellvaluebyaddr(obj_excel.getcelladdr(5, 5)));
	
	obj_excel.setcellvaluebyaddr("F6", "new");
}