그리드 특정 헤더행을 높이를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nHeaderRow | short | 헤더행 인덱스 |
nHeight | short | 헤더 높이 |
Type | Description |
---|---|
BOOL | 정상 처리 여부(true, false) |
function btn_on_mouseup(objInst)
{
var ret;
ret = grd.setheaderrowheight(0, 40);
factory.consoleprint("0번째 헤더 행 높이 처리 결과 = " + ret);
}