OneDCodeDetails
OneDCodeDetails represents detailed information specific to a 1D (one dimensional) barcode.
Definition
Namespace: Dynamsoft.BarcodeReader.Maui
Assembly: Dynamsoft.BarcodeReader.Maui
class OneDCodeDetails
Properties
| Property | Type | Description |
|---|---|---|
StartCharsBytes |
byte[]? | The start characters of the 1D barcode in a byte array. |
StopCharsBytes |
byte[]? | The stop characters of the 1D barcode in a byte array. |
CheckDigitBytes |
byte[]? | The check digit characters of the 1D barcode in a byte array. |
StartPatternRange |
ValueTuple<float, float> | The position range of the start pattern relative to the barcode’s location. |
MiddlePatternRange |
ValueTuple<float, float> | The position range of the middle pattern relative to the barcode’s location. |
EndPatternRange |
ValueTuple<float, float> | The position of the end pattern relative to the barcode location. |
StartCharsBytes
The start characters of the 1D barcode in a byte array. Start characters are often used to identify the beginning of the barcode.
byte[]? StartCharsBytes { get; }
StopCharsBytes
The stop characters of the 1D barcode in a byte array. Stop characters are often used to identify the end of the barcode.
byte[]? StopCharsBytes { get; }
CheckDigitBytes
The check digit characters of the 1D barcode in a byte array. Check digits are used for error detection and correction in some 1D barcodes.
byte[]? CheckDigitBytes { get; }
StartPatternRange
The position range of the start pattern relative to the barcode’s location.
(float Start, float End) StartPatternRange { get; }
MiddlePatternRange
The position range of the middle pattern relative to the barcode’s location.
(float Start, float End) MiddlePatternRange { get; }
EndPatternRange
The position range of the end pattern relative to the barcode’s location.
(float Start, float End) EndPatternRange { get; }