AlignmentPosition.cs 472 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Common.BarCode
  6. {
  7. /// <summary>
  8. /// 对齐方式
  9. /// </summary>
  10. public enum AlignmentPosition : uint
  11. {
  12. /// <summary>
  13. /// 居中
  14. /// </summary>
  15. Center,
  16. /// <summary>
  17. /// 居左
  18. /// </summary>
  19. Left,
  20. /// <summary>
  21. /// 居右
  22. /// </summary>
  23. Right
  24. }
  25. }