트리 그리드 수평 헤더의 툴팁 텍스트를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nRow | long | 로우 인덱스 |
nCol | long | 컬럼 인덱스 |
Type | Description |
---|---|
STRING | 헤더 툴팁 텍스트 |
* 툴팁(tooltip) : 아이템에 마우스를 올렸을때 해당 아이템의 설명을 보여주는 풍선 도움말
function btn_on_mouseup()
{
var strText = tgrdTest.getheadertooltiptext(0, 1);
screen.alert("0,1헤더의 툴팁 : " + strText);
}