버튼의 텍스트 수직정렬 상태를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nVertAlign | short | 수직정렬 상수 (*Remark 참조) |
Type | Description |
---|---|
void | 없음 |
**nVertAlign (수직정렬 속성값) 상수 XFD_VERTALIGN_TOP = 0 // 상단정렬 XFD_VERTALIGN_CENTER = 1 // 중앙정렬 XFD_VERTALIGN_BOTTOM = 2 // 하단정렬
function btnsetvertalign_on_mouseup()
{
// 상단 정렬
btnObj.setvertalign(XFD_VERTALIGN_TOP);
}