data_type 속성을 반환하는 API이다.
Type | Description |
---|---|
short | 데이터 타입(*Remark 참조) |
* 데이터 타입 상수 0 : 숫자 1 : 영문 2 : 한글
function btn_setdatatype_on_mouseup(objInst)
{
if (mul.getdatatype() == 2) {
mul.setdatatype(1);
}
else {
mul.setdatatype(2);
}
}