Load.control.caption.align()

Load.control.caption.align(align)

개요

캡션 정렬을 정렬합니다.

로드 스크립트에서만 사용가능합니다.

대상컨트롤 : Button, InputText, InputNumber, InputMask, TextArea, InputDate, ComboBox, InputCodehelp

파라미터

파라미터명
필수여부
타입
제약사항
설명

align

필수

String

Current.control.caption.position() 값이 Top(기본값)으로 설정되어 있어야 캡션 정렬이 적용됩니다.

정렬 타입

align

정렬 타입은 아래 중 하나를 선택합니다.

  • left (좌측정렬)

  • center (중앙정렬)

  • right (우측정렬)

예시

if (Load.sector.StatusSeq == 1) { 
    Load.control.caption.align('left'); 
}

Last updated

Was this helpful?