멀티라인 그리드 특정 헤더의 텍스트를 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nRow | long | 헤더 로우 인덱스 |
nCol | long | 헤더 컬럼 인덱스 |
Type | Description |
---|---|
STRING | 헤더 텍스트 |
function btn_getheadertext_on_mouseup()
{
var strText = mgrdTest.getheadertext(0,0);
screen.alert("헤더의 텍스트값 : " + strText);
}