Class HIBCLICComplexCodetext

Class HIBCLICComplexCodetext

Название пространства: Aspose.BarCode.ComplexBarcode Ассоциация: Aspose.BarCode.dll (25.4.0)

Базовый класс для кодирования и декодирования текста, встроенного в код HIBC LIC.

public abstract class HIBCLICComplexCodetext : IComplexCodetext

Inheritance

object HIBCLICComplexCodetext

Derived

HIBCLICCombinedCodetext , HIBCLICPrimaryDataCodetext , HIBCLICSecondaryAndAdditionalDataCodetext

Implements

IComplexCodetext

Наследованные члены

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Этот шаблон показывает, как декодировать сырой HIBC LIC codetext в HIBCLICComplexCodetext примере.

using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.HIBCAztecLIC))
{
     foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        HIBCLICComplexCodetext resultHIBCLICComplexCodetext = ComplexCodetextReader.TryDecodeHIBCLIC(result.CodeText);
        Console.WriteLine("BarCode Type: " + resultMaxiCodeCodetext.GetBarcodeType());
        Console.WriteLine("BarCode CodeText: " + resultMaxiCodeCodetext.GetConstructedCodetext());
    }
}

Constructors

HIBCLICComplexКодтекст()

protected HIBCLICComplexCodetext()

Properties

BarcodeType

Кодный текст HIBC LIC можно кодировать с помощью типов кода HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC и HIBCQRLIC.Стандартная стоимость: HIBCCode39LIC.

public BaseEncodeType BarcodeType { get; set; }

Стоимость недвижимости

BaseEncodeType

Methods

GetBarcodeType()

Имеет тип баркода.

public BaseEncodeType GetBarcodeType()

Returns

BaseEncodeType

Тип баркода .

GetConstructedCodetext()

Создание кодетекста

public abstract string GetConstructedCodetext()

Returns

string

Конструированный кодекс

InitFromString(Стриг)

Инициализует пример из построенного кодекста.

public abstract void InitFromString(string constructedCodetext)

Parameters

constructedCodetext string

Созданный кодекс.

 Русский