셀렉트박스의 지정한 인덱스에 텍스트를 삽입하는 API이다.
Parameters | Type | Description |
---|---|---|
nIndex | short | 삽입할 아이템의 인덱스 |
strText | STRING | 삽입할 텍스트 |
Type | Description |
---|---|
BOOL | 정상 처리 여부 |
function btninsertstring_on_mouseup()
{
sbTest.insertstring(2, "06:test"); // 셀렉트 아이템 삽입
}