멀티라인 그리드 특정 컬럼의 input type값을 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nSubRow | short | 서브 로우 인덱스 |
nColumn | short | 컬럼 인덱스 |
Type | Description |
---|---|
short | nInputType 상수 (*Remark 참조) |
**nInputType 상수 XFD_GRID_INPUTEDITBOX = 0 XFD_GRID_INPUTCHECKBOX = 1 XFD_GRID_INPUTCOMBOBOX = 2 XFD_GRID_INPUTCALENDAR = 3 XFD_GRID_INPUTRADIOBUTTON = 4 XFD_GRID_INPUTBARGAUGE = 5 XFD_GRID_INPUTSPIN = 6 XFD_GRID_INPUTHTML = 7 XFD_GRID_INPUTCHART = 8 XFD_GRID_INPUTBUTTON = 9 XFD_GRID_INPUTIMAGE = 10
function btn_getcolumninputtype_on_mouseup()
{
var nInputtype = mgrdTest.getcolumninputtype(0,0);
screen.alert("0번째컬럼에0번째서브로우의 inputtype값 :" + nInputtype);
}