■ CheckEdit 클래스에서 체크 상자의 정렬을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
using DevExpress.Utils; using DevExpress.XtraEditors; #region 정렬 설정하기 - SetAlignment(checkEdit, horzAlignment) /// <summary> /// 정렬 설정하기 /// </summary> /// <param name="checkEdit">CheckEdit 객체</param> /// <param name="horzAlignment">수평 정렬</param> public void SetAlignment(CheckEdit checkEdit, HorzAlignment horzAlignment) { checkEdit.Properties.GlyphAlignment = horzAlignment; checkEdit.Properties.Appearance.TextOptions.HAlignment = horzAlignment; } #endregion |