버튼 컨트롤에 이미지 채움 형식을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nFillStyle | short | 이미지 채움 형식(*Remark 참조) | 
| Type | Description | 
|---|---|
| void | 
**nFillStyle 상수 0:기본 1:수평채움 2:수직채움 3:모두채움
function btnImage_on_mouseup()
{
	// 이미지 채움 옵션을 기본에서 수평채움으로 변경
	if(btnImage.getimagefillstyle() == 0) {
		btnImage.setimagefillstyle(1);
	}
}