Table of Contents

Class AztecDetectorResult

Namespace
ZXing.Aztec.Internal
Assembly
zxing.dll

Extends DetectorResult with more information specific to the Aztec format, like the number of layers and whether it's compact.

public class AztecDetectorResult : DetectorResult
Inheritance
AztecDetectorResult
Inherited Members

Constructors

AztecDetectorResult(BitMatrix, ResultPoint[], bool, int, int)

Initializes a new instance of the AztecDetectorResult class.

public AztecDetectorResult(BitMatrix bits, ResultPoint[] points, bool compact, int nbDatablocks, int nbLayers)

Parameters

bits BitMatrix

The bits.

points ResultPoint[]

The points.

compact bool

if set to true [compact].

nbDatablocks int

The nb datablocks.

nbLayers int

The nb layers.

Properties

Compact

Gets a value indicating whether this Aztec code is compact.

public bool Compact { get; }

Property Value

bool

true if compact; otherwise, false.

NbDatablocks

Gets the nb datablocks.

public int NbDatablocks { get; }

Property Value

int

NbLayers

Gets the nb layers.

public int NbLayers { get; }

Property Value

int