Enum AztecSymbolMode

AztecSymbolMode enumeration

Specifies the Aztec symbol mode.

public enum AztecSymbolMode

Values

NameValueDescription
Auto0Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec. This is default value.
Compact1Specifies the Compact symbol for Aztec. Aztec Compact symbol permits only 1, 2, 3 or 4 layers.
FullRange2Specifies the Full-range symbol for Aztec. Aztec Full-range symbol permits from 1 to 32 layers.
Rune3Specifies the Rune symbol for Aztec. Aztec Runes are a series of small but distinct machine-readable marks. It permits only number value from 0 to 255.

Examples

This sample shows how to change Aztec Symbol mode and save a BarCode image.

[C#]
using (Aspose.BarCode.Generation.BarcodeGenerator generator = new Aspose.BarCode.Generation.BarcodeGenerator(EncodeTypes.Aztec))
{
    generator.CodeText = "125";
    generator.Parameters.Barcode.Aztec.AztecSymbolMode = AztecSymbolMode.Rune;
    generator.Save("test.png");
}
[VB.NET]
Using generator As New Aspose.BarCode.Generation.BarcodeGenerator(EncodeTypes.Aztec)
    generator.CodeText = "125"
    generator.Parameters.Barcode.Aztec.AztecSymbolMode = AztecSymbolMode.Rune
    generator.Save("test.png")
End Using

See Also