그리드 linenumber_hd_imagenormal 속성 관련 정보를 설정한다.
| Parameters | Type | Description | 
|---|---|---|
| strImageUrl | STRING | linenumber_hd_imagenormal 속성값 (기본값 null) | 
| nImageType | short | linenumber_hd_imagetype 속성값 (기본값 null) | 
| bImageShow | STRING | linenumber_hd_imageshow 속성값 (기본값 null) | 
| Type | Description | 
|---|---|
| BOOL | 정상 적용 여부(true, false) | 
각 파라미터 값이 지정되지 않거나(undefined), null인 경우에는 해당 파라미터는 무시된다.
strImageUrl 파라미터에 이미지를 공백 문자열을 지정하는 경우, 이미지를 삭제한다.
function btntest_on_mouseup()
{
	// linenumber_hd_image 관련 속성 정보값 로깅
	factory.consoleprint("linenumber_hd_imagenormal = " + grd.prop("linenumber_hd_imagenormal"));
	factory.consoleprint("linenumber_hd_imagetype = " + grd.prop("linenumber_hd_imagetype"));
	factory.consoleprint("linenumber_hd_imageshow = " + grd.prop("linenumber_hd_imageshow"));
	// linenumber_hd_image 관련 속성 정보값 설정
	grd.setlinenumberheaderimage("/softbase.png", null, null);
}