Class DotCodeExtendedParameters

Class DotCodeExtendedParameters

이름 공간 : Aspose.BarCode.BarCodeRecognition 모임: Aspose.BarCode.dll (25.4.0)

DotCode 인식 바코드에 대한 특별 데이터를 저장합니다.

public sealed class DotCodeExtendedParameters : BaseExtendedParameters

Inheritance

object BaseExtendedParameters DotCodeExtendedParameters

상속 회원들

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

Examples

이 샘플은 DotCode 원료 가치를 얻는 방법을 보여줍니다.

using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DotCode, "12345"))
{
    generator.Save(@"c:\test.png");
}
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.DotCode))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        Console.WriteLine("BarCode type: " + result.CodeTypeName);
        Console.WriteLine("BarCode codetext: " + result.CodeText);
        Console.WriteLine("DotCode barcode ID: " + result.Extended.DotCode.DotCodeStructuredAppendModeBarcodeId);
        Console.WriteLine("DotCode barcodes count: " + result.Extended.DotCode.DotCodeStructuredAppendModeBarcodesCount);
    }
}

Properties

DotCodeIsReaderInitialization

코드가 바 코드 리더의 시작 또는 재프로그래밍에 대한 지침으로 다음 데이터를 해석하도록 독자에게 지시하는 데 사용되는지 여부를 지정합니다.가짜 가치는 가짜입니다.

public bool DotCodeIsReaderInitialization { get; }

부동산 가치

bool

DotCodeStructuredAppendModeBarcodeId

DotCode의 ID를 얻으려면 구조화된 첨부 모드 바코드입니다.ID는 1에서 시작되며 바코드를 계산하는 것보다 적거나 동일해야합니다.

public int DotCodeStructuredAppendModeBarcodeId { get; }

부동산 가치

int

DotCodeStructuredAppendModeBarcodesCount

DotCode 구조화된 첨부 모드 바코드를 계산합니다. 기본 값은 -1. 계산은 1에서 35 사이의 값이어야합니다.

public int DotCodeStructuredAppendModeBarcodesCount { get; }

부동산 가치

int

Methods

Equals(객체)

이 예제가 지정된 Aspose.BarCode.BarCodeRecognition.DotCodeExtendedParameters 값과 동일한지 여부를 나타내는 값을 반환합니다.

public override bool Equals(object obj)

Parameters

obj object

System.Object 값은 이 값과 비교할 수 있습니다.

Returns

bool

진짜 obj이 이 경우와 동일한 가치를 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

GetHashCode()

이 경우 해시 코드를 반환합니다.

public override int GetHashCode()

Returns

int

32비트 전체 해시 코드가 서명되었습니다.

ToString()

이 Aspose.BarCode.BarCodeRecognition.DotCodeExtendedParameters의 인간 읽을 수 있는 링 대표를 반환합니다.

public override string ToString()

Returns

string

이 Aspose.BarCode.BarCodeRecognition.DotCodeExtendedParameters를 나타내는 라인입니다.

Operators

운영자 =(DotCodeExtended파라미터, DotCodeExtended파라미터)

첫 번째 Aspose.BarCode.BarCodeRecognition.DotCodeExtendedParameters 값이 두 번째 값과 동일한지 여부를 나타내는 값을 반환합니다.

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

Parameters

first DotCodeExtendedParameters

첫 번째 비교된 가치

second DotCodeExtendedParameters

두 번째 비교 가치

Returns

bool

진짜 첫 번째가 두 번째와 동일한 가치가 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

운영자 !=(DotCodeExtended파라미터, DotCodeExtended파라미터)

첫 번째 Aspose.BarCode.BarCodeRecognition.DotCodeExtendedParameters 값이 두 번째 값과 다르다는 것을 나타내는 값을 반환합니다.

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

Parameters

first DotCodeExtendedParameters

첫 번째 비교된 가치

second DotCodeExtendedParameters

두 번째 비교 가치

Returns

bool

진짜 첫 번째가 두 번째와 다른 값을 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..

 한국어