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