테이블의 지정한 인덱스 셀의 글자색을 설정하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| nCellIndex | short | 지정할 셀의 index |
| clrFore | COLOR | 글자색 |
| Type | Description |
|---|---|
| BOOL | 정상 적용 여부(true, false) |
function btnSetcellforecolorex_on_mouseup()
{
for(var nI=0; nI < tblTest.getcellcount(); nI++) {
tblTest.setcellforecolorex(nI, factory.rgb(255,194,14));
}
}