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