maxlength_includedot속성값을 동적으로 변경하는 API입니다.
| Parameters | Type | Description | 
|---|---|---|
| bIncludeDot | BOOL | maxlength_includedot 속성값 | 
| Type | Description | 
|---|---|
| void | 없음 | 
function btn_on_mouseup()
{
	var bMaxLengthIncludeDot = field.getmaxlengthincludedot();
	if(bMaxLengthIncludeDot == true) {
		factory.consoleprint("maxlength_includedot 속성 켜짐");
	} else {
		field.setmaxlengthincludedot(true);
	}
}