그리드 특정 컬럼의 글자색을 변경하는 API이다.
Parameters | Type | Description |
---|---|---|
nColumn | short | 컬럼 인덱스 |
clrFore | COLOR | 컬럼 글자색 |
Type | Description |
---|---|
void | 없음 |
function btnsetColcolor_on_mouseup()
{
// 글자색을 RGB 값으로 파란색을 설정함
var clrFore = factory.rgb(0, 0, 255);
// 그리드 1번째 컬럼 글자색 지정
grd.setcolumnforecolor(1, clrFore);
}