Class DataMatrixExtendedParameters
이름 공간 : Aspose.BarCode.BarCodeRecognition 모임: Aspose.BarCode.dll (25.4.0)
DataMatrix 인식 바코드의 특수 데이터를 저장합니다.
public sealed class DataMatrixExtendedParameters : BaseExtendedParameters
Inheritance
object ← BaseExtendedParameters ← DataMatrixExtendedParameters
상속 회원들
BaseExtendedParameters.IsEmpty , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
이 샘플은 DataMatrix 원료 가치를 얻는 방법을 보여줍니다.
using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DataMatrix, "12345"))
{
generator.Save(@"c:\test.png");
}
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.DataMatrix))
{
foreach (BarCodeResult result in reader.ReadBarCodes())
{
Console.WriteLine("BarCode type: " + result.CodeTypeName);
Console.WriteLine("BarCode codetext: " + result.CodeText);
Console.WriteLine("DataMatrix barcode ID: " + result.Extended.DataMatrix.StructuredAppendBarcodeId);
Console.WriteLine("DataMatrix barcodes count: " + result.Extended.DataMatrix.StructuredAppendBarcodesCount);
Console.WriteLine("DataMatrix file ID: " + result.Extended.DataMatrix.StructuredAppendFileId);
Console.WriteLine("DataMatrix is reader programming: " + result.Extended.DataMatrix.IsReaderProgramming);
}
}
Properties
IsReaderProgramming
코드가 바 코드 리더의 시작 또는 재프로그래밍에 대한 지침으로 다음 데이터를 해석하도록 독자에게 지시하는 데 사용되는지 여부를 지정합니다.가짜 가치는 가짜입니다.
public bool IsReaderProgramming { get; }
부동산 가치
StructuredAppendBarcodeId
DataMatrix의 ID를 얻으십시오 구조화된 첨부 모드 바코드. ID는 1에서 시작되며 바코드를 계산하는 것보다 적거나 동일해야합니다.
public int StructuredAppendBarcodeId { get; }
부동산 가치
StructuredAppendBarcodesCount
DataMatrix 구조화된 첨부 모드 바코드를 계산합니다. 기본 값은 -1. 계산은 1에서 35 사이의 값이어야합니다.
public int StructuredAppendBarcodesCount { get; }
부동산 가치
StructuredAppendFileId
DataMatrix의 ID를 얻으십시오 구조화된 첨부 모드 바코드. ID는 1에서 시작되며 바코드를 계산하는 것보다 적거나 동일해야합니다.
public int StructuredAppendFileId { get; }
부동산 가치
Methods
Equals(객체)
이 예제가 지정된 Aspose.BarCode.BarCodeRecognition.DataMatrixExtendedParameters 값과 동일한지 여부를 나타내는 값을 반환합니다.
public override bool Equals(object obj)
Parameters
obj
object
System.Object 값은 이 값과 비교할 수 있습니다.
Returns
진짜 obj이 이 경우와 동일한 가치를 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..
GetHashCode()
이 경우 해시 코드를 반환합니다.
public override int GetHashCode()
Returns
32비트 전체 해시 코드가 서명되었습니다.
ToString()
이 Aspose.BarCode.BarCodeRecognition.DataMatrixExtendedParameters의 인간 읽을 수 있는 링 대표를 반환합니다.
public override string ToString()
Returns
이 Aspose.BarCode.BarCodeRecognition.DataMatrixExtended파라미터를 나타내는 라인입니다.
Operators
운영자 =(데이터 매트릭스 확장기, 데이터 매트릭스 확장기)
첫 번째 Aspose.BarCode.BarCodeRecognition.DataMatrixExtendedParameters 값이 두 번째 값과 동일한지 여부를 나타내는 값을 반환합니다.
public static bool operator ==(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second)
Parameters
first
DataMatrixExtendedParameters
첫 번째 비교된 가치
second
DataMatrixExtendedParameters
두 번째 비교 가치
Returns
진짜 첫 번째가 두 번째와 동일한 가치가 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..
운영자 !=(데이터 매트릭스 확장기, 데이터 매트릭스 확장기)
첫 번째 Aspose.BarCode.BarCodeRecognition.DataMatrixExtendedParameters 값이 두 번째 값과 다르다는 것을 나타내는 값을 반환합니다.
public static bool operator !=(DataMatrixExtendedParameters first, DataMatrixExtendedParameters second)
Parameters
first
DataMatrixExtendedParameters
첫 번째 비교된 가치
second
DataMatrixExtendedParameters
두 번째 비교 가치
Returns
진짜 첫 번째가 두 번째와 다른 값을 가지고 있다면; 그렇지 않으면, The translation of “false” to Korean is “거짓”..