라디오버튼 » Api

getgroupat

Description

해당 라디오버튼 그룹내의 특정 라디오버튼 Instance를 반환한다.

Parameters

Parameters Type Description
nIndex short 그룹내 Index

Return Value

Type Description
INSTANCE 그룹내의 특정 라디오 버튼 Instance

Example

function btn_on_mouseup() { var nRadios = radioInKind.getgroupcount(); for(var nIndex = 0;nIndex < nRadios;nIndex++) { var instRadio = radioInKind.getgroupat(nIndex); if(instRadio == null) { continue; } if(instRadio.getcheck() == true) { screen.alert("check at : " + nIndex); break; } } }

See Also

getgroupcount

Viewer Ver.

9.1.1.1

Update Date

20100531