트리그리드의 특정 Row의 트리키값을 읽어 들이는 API이다.
| Parameters | Type | Description |
|---|---|---|
| nRow | long | 행 인덱스 |
| Type | Description |
|---|---|
| STRING | 아이템의 트리키값 |
function btnInsert_on_mouseup(objInst)
{
var nSelectRow = gg.getselectrow();
if(-1 < nSelectRow) {
factory.consoleprint("tree key : " + gg.getitemkey(nSelectRow));
}
}