현재 라디오버튼과 동일한 그룹에 속한 라디오 버튼의 갯수를 반환한다.
| Type | Description | 
|---|---|
| short | 그룹내의 라디오 버튼 갯수 | 
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;
		}
	}
}