maxlength_includedot속성값을 반환하는 API입니다.
Type | Description |
---|---|
BOOL | maxlength_includedot 속성값 |
function btn_on_mouseup()
{
var bMaxLengthIncludeDot = field.getmaxlengthincludedot();
if(bMaxLengthIncludeDot == true) {
factory.consoleprint("maxlength_includedot 속성 켜짐");
} else {
field.setmaxlengthincludedot(true);
}
}