컨트롤의 배열 arrayindex 값을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nArrayIndex | short | 컨트롤의 배열 인덱스 값 |
Type | Description |
---|---|
void | 없음 |
* 컨트롤에 arrayindex를 설정하지 않았을 경우엔 기본값이 -1이다.
function btn_setarrayindex_on_mouseup()
{
fldNormal.setarrayindex(1);
// 해당필드의인덱스값변경
screen.alert(fldNormal.getarrayindex());
// 해당필드의인덱스값확인
}