특정 테이블 셀의 ID를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nCellIndex | short | 셀 Index |
Type | Description |
---|---|
STRING | 해당 cell의 ID |
function btnGetCellID_on_mouseup()
{
for(var nCell = 0;nCell < tableSeat.getcellcount();nCell++) {
factroy.consoleprint(tt.getcellid(nCell));
}
}