1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Common.BarCode
- {
- /// <summary>
- /// 对齐方式
- /// </summary>
- public enum AlignmentPosition : uint
- {
- /// <summary>
- /// 居中
- /// </summary>
- Center,
- /// <summary>
- /// 居左
- /// </summary>
- Left,
- /// <summary>
- /// 居右
- /// </summary>
- Right
- }
- }
|