Table of Contents

Class AztecEncodingOptions

Namespace
ZXing.Aztec
Assembly
zxing.dll

The class holds the available options for the AztecWriter

public class AztecEncodingOptions : EncodingOptions
Inheritance
AztecEncodingOptions
Inherited Members

Constructors

AztecEncodingOptions()

public AztecEncodingOptions()

Properties

CharacterSet

Specifies what character encoding to use where applicable (type string)

public string CharacterSet { get; set; }

Property Value

string

ErrorCorrection

Representing the minimal percentage of error correction words. Note: an Aztec symbol should have a minimum of 25% EC words.

public int? ErrorCorrection { get; set; }

Property Value

int?

Layers

Specifies the required number of layers for an Aztec code: a negative number (-1, -2, -3, -4) specifies a compact Aztec code 0 indicates to use the minimum number of layers (the default) a positive number (1, 2, .. 32) specifies a normal (non-compact) Aztec code

public int? Layers { get; set; }

Property Value

int?