테이블의 지정한 인덱스 셀의 텍스트를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nCellIndex | short | 지정할 셀의 index |
strText | STRING | 입력할 텍스트 |
Type | Description |
---|---|
BOOL | 정상 적용 여부(true, false) |
function btn_Setcelltextex_on_mouseup()
{
tblTest.setcelltextex(1, "Cell Text");
}