Class AztecExtendedParameters

Class AztecExtendedParameters

名称: Aspose.BarCode.BarCodeRecognition 合計: Aspose.BarCode.dll (25.4.0)

Aztec認定バーコードの特別データを保存

public sealed class AztecExtendedParameters : BaseExtendedParameters

Inheritance

object BaseExtendedParameters AztecExtendedParameters

相続人

BaseExtendedParameters.IsEmpty , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

このサンプルは、Aztecの原価を取得する方法を示しています。

using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Aztec, "12345"))
{
    generator.Save(@"c:\test.png");
}
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Aztec))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        Console.WriteLine("BarCode type: " + result.CodeTypeName);
        Console.WriteLine("BarCode codetext: " + result.CodeText);
        Console.WriteLine("Aztec barcode ID: " + result.Extended.Aztec.StructuredAppendBarcodeId);
        Console.WriteLine("Aztec barcodes count: " + result.Extended.Aztec.StructuredAppendBarcodesCount);
        Console.WriteLine("Aztec file ID: " + result.Extended.Aztec.StructuredAppendFileId);
        Console.WriteLine("Aztec is reader initialization: " + result.Extended.Aztec.IsReaderInitialization);
    }
}

Properties

IsReaderInitialization

コードがバーコードリーダーの開始または再プログラミングのための指示として、以下のデータを解釈するよう読者に指示するために使用されるかどうかを示します。デフォルト値は偽物です。

public bool IsReaderInitialization { get; }

不動産価値

bool

StructuredAppendBarcodeId

Aztec の構造化されたアプリケーションモードのバーコードの ID を取得します. ID は 1 から始まり、バーコードの数値と同等でなければなりません. デフォルト値は 0.

public int StructuredAppendBarcodeId { get; }

不動産価値

int

StructuredAppendBarcodesCount

Aztec の構造化された付属モードのバーコードを数える。 デフォルト値は 0. 数値は 1 から 26 の値でなければなりません。

public int StructuredAppendBarcodesCount { get; }

不動産価値

int

StructuredAppendFileId

Aztec の構造化された追加モードのファイル ID を取得します. デフォルト値は空のストレッチです。

public string StructuredAppendFileId { get; }

不動産価値

string

Methods

Equals(対象)

このインスタンスが指定された Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters 値に等しいかどうかを示す値を返します。

public override bool Equals(object obj)

Parameters

obj object

システム.オブジェクト 値は、この例と比較します。

Returns

bool

真実 obj がこの例と同じ価値を持っている場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

GetHashCode()

この例のハッシュコードを返します。

public override int GetHashCode()

Returns

int

32ビットのハッシュコードがサインされています。

ToString()

この Aspose.BarCode.BarCodeRecognition.AztecExtendedパラメーターの人間読みやすいストレッチの表現を返します。

public override string ToString()

Returns

string

この Aspose.BarCode.BarCodeRecognition.AztecExtendedパラメーターを表す列です。

Operators

オペレーター=(AztecExtendedパラメーター、AztecExtendedパラメーター)

最初の Aspose.BarCode.BarCodeRecognition.AztecExtendedParameters の値が2番目に等しいかどうかを示す値を返します。

public static bool operator ==(AztecExtendedParameters first, AztecExtendedParameters second)

Parameters

first AztecExtendedParameters

最初の比較価値

second AztecExtendedParameters

2位 比較価値

Returns

bool

真実 1つ目が2つと同じ価値がある場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

オペレーター !=(AztecExtendedパラメーター、AztecExtendedパラメーター)

最初の Aspose.BarCode.BarCodeRecognition.AztecExtended 値が第 2 値と異なるかどうかを示す値を返します。

public static bool operator !=(AztecExtendedParameters first, AztecExtendedParameters second)

Parameters

first AztecExtendedParameters

最初の比較価値

second AztecExtendedParameters

2位 比較価値

Returns

bool

真実 1番目と2番目の価値が違う場合、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

 日本語