public final class AztecSymbolMode
extends com.aspose.ms.System.Enum
Specifies the Aztec symbol mode.
[C#] Aspose.BarCode.BarCodeBuilder b = new BarCodeBuilder(); b.CodeText = "125"; b.SymbologyType = Aspose.BarCode.SymbologyType.Aztec; b.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.Rune; b.BarCodeImage.Save("test.png"); [VB.NET] dim b as Aspose.BarCode.BarCodeBuilder b = new BarCodeBuilder() b.CodeText = "125" b.SymbologyType = Aspose.BarCode.SymbologyType.Aztec b.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.Rune b.BarCodeImage.Save("test.png")
Modifier and Type | Field and Description |
---|---|
static int |
Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec.
|
static int |
Compact
Specifies the Compact symbol for Aztec.
|
static int |
FullRange
Specifies the Full-range symbol for Aztec.
|
static int |
Rune
Specifies the Rune symbol for Aztec.
|
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject, toString
public static final int Auto
Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec. This is default value.
public static final int Compact
Specifies the Compact symbol for Aztec. Aztec Compact symbol permits only 1, 2, 3 or 4 layers.
public static final int FullRange
Specifies the Full-range symbol for Aztec. Aztec Full-range symbol permits from 1 to 32 layers.
public static final int Rune
Specifies 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.
Copyright (c) 2002-2017 Aspose Pty Ltd. All Rights Reserved.