셀렉트박스의 특정 인덱스의 전체 텍스트를 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nIndex | short | 아이템 인덱스값 | 
| Type | Description | 
|---|---|
| STRING | 특정 인덱스에 들어있는 텍스트(코드+코멘트) | 
function btnGetitemtext_on_mouseup()
{
     screen.alert(sbTest.getitemtext(1));
     // 셀렉트박스 1번째 인덱스의 전체 텍스트 가져오기
}