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