maxlength_includedot 속성값을 반환하는 API이다.
| Type | Description | 
|---|---|
| BOOL | hostdata_includedot 속성값 | 
function btn_on_mouseup()
{
	var bHostDataIncludeDot = field.gethostdataincludedot();
	if(bHostDataIncludeDot == true) {
		factory.consoleprint("hostdata_includedot 속성 켜짐");
	} else {
		field.sethostdataincludedot(true);
	}
}