숫자필드의 maxlength_includedot 속성 및 hostdata_includedot 속성을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
bIncludeDot | BOOL | maxlength_includedot 속성값 |
bIncludeDot | BOOL | hostdata_includedot 속성값 |
Type | Description |
---|---|
void | 없음 |
function btn_on_mouseup()
{
var bHostDataIncludeDot = field.gethostdataincludedot();
if(bHostDataIncludeDot == true) {
factory.consoleprint("hostdata_includedot 속성 켜짐");
} else {
field.sethostdataincludedot(true);
}
}