라디오버튼 » Api

getgroupcount

Description

현재 라디오버튼과 동일한 그룹에 속한 라디오 버튼의 갯수를 반환한다.

Return Value

Type Description
short 그룹내의 라디오 버튼 갯수

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

getgroupat

Viewer Ver.

9.1.1.1

Update Date

20100531