도형 escape_html 속성값을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nEscapeType | short | escape_html 속성값 | 
| Type | Description | 
|---|---|
| BOOL | 정상처리 여부 | 
function btnsetlinegap_on_mouseup()
{
    var nEscapeType;
    
    nEscapeType = objShape.getescapehtml();
    if (nEscapeType == 0) {
    	objShape.setescapehtml(1);
    }
    else {
    	objShape.setescapehtml(0);
    }
}