지정한 키값의 아이템에 텍스트를 입력하는 API이다.
Parameters | Type | Description |
---|---|---|
strKey | STRING | 트리 아이템 키값 |
strText | STRING | 아이템 텍스트 |
Type | Description |
---|---|
BOOL | 정상 적용 여부(true, false) |
function btn_setitemtextex_on_mouseup()
{
//"treekey"라는 키값을 가진 아이템에 "업무"를 텍스트로 설정한다.
trTest.setitemtextex("treekey", "업무");
}