그리드 특정 아이템에 텍스트 우측 이미지를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nRow | long | 로우 인덱스 |
nCol | long | 컬럼 인덱스 |
Type | Description |
---|---|
STRING | 이미지 경로 |
function btn_on_mouseup()
{
grd.setitemtextrightimage(2, 1, "/xframe_logo.gif");
screen.alert(grd.getitemtextrightimage(2, 1));
}