Table of contents

OneDCodeDetails

The OneDCodeDetails class represents detailed information about a one-dimensional barcode. It inherits from the BarcodeDetails class.

Definition

Namespace: Dynamsoft.DBR

Assembly: Dynamsoft.BarcodeReader.dll

Inheritance: BarcodeDetails -> OneDCodeDetails

public class OneDCodeDetails : BarcodeDetails

Attributes

Attribute Type
startCharsBytes byte[]
stopCharsBytes byte[]
checkDigitBytes byte[]
startPatternRange float[]
middlePatternRange float[]
endPatternRange float[]

startCharsBytes

The start chars of the one-dimensional barcode in a byte array.

byte[] startCharsBytes;

stopCharsBytes

The stop chars of the one-dimensional barcode in a byte array.

byte[] stopCharsBytes;

checkDigitBytes

The check digit chars of the one-dimensional barcode in a byte array.

byte[] checkDigitBytes;

startPatternRange

The position of the start pattern relative to the barcode location.

float[] startPatternRange

Remarks

The property represents a float array of length 2:

  • Index 0: X coordinate of the start position in percentage value.
  • Index 1: X coordinate of the end position in percentage value.

middlePatternRange

The position of the middle pattern relative to the barcode location.

float[] middlePatternRange

Remarks

The property represents a float array of length 2:

  • Index 0: X coordinate of the start position in percentage value.
  • Index 1: X coordinate of the end position in percentage value.

endPatternRange

The position of the end pattern relative to the barcode location.

float[] endPatternRange

Remarks

The property represents a float array of length 2:

  • Index 0: X coordinate of the start position in percentage value.
  • Index 1: X coordinate of the end position in percentage value.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: