//using Curtain.Framework.Barcode.OneD;
using ZXing.OneD;
namespace Dongke.WinForm.Controls.InvoiceLayout.DrawBarcode.OneD
{
///
/// 一维条码格式
///
public enum OneDFormat
{
///
/// CODE_128
///
CODE_128 = 1,
///
/// EAN_13
///
EAN_13,
///
/// EAN_8
///
EAN_8,
///
/// CODABAR
///
CODABAR,
///
/// CODE_39
///
CODE_39,
///
/// CODE_93
///
CODE_93,
///
/// ITF
///
ITF,
///
/// MSI
///
MSI,
///
/// PLESSEY
///
PLESSEY,
///
/// UPC_E
///
UPC_E,
///
/// UPC_E
///
UPC_A,
}
}