HIBCLICSecondaryAndAdditionalDataCodetext

HIBCLICSecondaryAndAdditionalDataCodetext class

二次データを格納する HIBC LIC コードに埋め込まれたテキストをエンコードおよびデコードするためのクラス.

public class HIBCLICSecondaryAndAdditionalDataCodetext : HIBCLICComplexCodetext

コンストラクター

名前説明
HIBCLICSecondaryAndAdditionalDataCodetext()デフォルトのコンストラクター。

プロパティ

名前説明
BarcodeType { get; set; }バーコード タイプを取得または設定します。 HIBC LIC コードテキストは、HIBCCode39LIC、HIBCCode128LIC、HIBCAztecLIC、HIBCDataMatrixLIC、および HIBCQRLIC エンコード タイプを使用してエンコードできます。 デフォルト値: HIBCCode39LIC.
Data { get; set; }二次および追加の補足データを識別します。
LinkCharacter { get; set; }リンク文字を識別します。

メソッド

名前説明
override Equals(object)このインスタンスが指定された値と等しいかどうかを示す値を返しますHIBCLICSecondaryAndAdditionalDataCodetext値.
GetBarcodeType()バーコードの種類を取得します。
override GetConstructedCodetext()を構築します codetext
override GetHashCode()このインスタンスのハッシュ コードを返します。
override InitFromString(string)構築されたコードテキストからインスタンスを初期化します.

このサンプルは、HIBCLICSecondaryAndAdditionalDataCodetext. を使用して HIBC LIC をエンコードおよびデコードする方法を示しています。

[C#]
HIBCLICSecondaryAndAdditionalDataCodetext complexCodetext = new HIBCLICSecondaryAndAdditionalDataCodetext();
complexCodetext.BarcodeType = EncodeTypes.HIBCQRLIC;
complexCodetext.Data = new SecondaryAndAdditionalData();
complexCodetext.Data.ExpiryDate = DateTime.Now;
complexCodetext.Data.ExpiryDateFormat = HIBCLICDateFormat.MMDDYY;
complexCodetext.Data.Quantity = 30;
complexCodetext.Data.LotNumber = "LOT123";
complexCodetext.Data.SerialNumber = "SERIAL123";
complexCodetext.Data.DateOfManufacture = DateTime.Now;
using (ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(complexCodetext))
{
    Bitmap image = generator.GenerateBarCodeImage();
    using (BarCodeReader reader = new BarCodeReader(image, DecodeType.HIBCQRLIC))
    {
        reader.ReadBarCodes();
        string codetext = reader.FoundBarCodes[0].CodeText;
        HIBCLICSecondaryAndAdditionalDataCodetext result = (HIBCLICSecondaryAndAdditionalDataCodetext)ComplexCodetextReader.TryDecodeHIBCLIC(codetext);
        Console.WriteLine("Expiry date: " + result.Data.ExpiryDate);
        Console.WriteLine("Quantity: " + result.Data.Quantity);
        Console.WriteLine("Lot number: " + result.Data.LotNumber);
        Console.WriteLine("Serial number: " + result.Data.SerialNumber);
        Console.WriteLine("Date of manufacture: " + result.Data.DateOfManufacture);
    }
}

関連項目