Aztec

Represents a Aztec barcode.

public class Aztec : Barcode
Public Class Aztec
    Inherits Barcode

Inheritance: ObjectBarcodeAztec

Licensing Info

This class is a DynamicBarcode Creator feature. One of the following is required for non-evaluation usage:

Examples

The following example will Draw a Aztec barcode image.

Imports System
Imports ceTe.DynamicBarcode.Creator

Module MyModule

   Sub Main()

   'Create a barcode object.
   Dim barcode As Aztec = New Aztec("Hello World", AztecSymbolSize.Full)

   'Draw barcode image.
   barcode.Draw("C:\barcode.png", 300, ImageFormat.Png)

   End Sub
End Module
using System;
using ceTe.DynamicBarcode.Creator;

class MyClass
{
    static void Main()
    {
        // Create a barcode object.
        Aztec barcode = new Aztec("Hello World", AztecSymbolSize.Full);

        // Draw barcode image.
       barcode.Draw(@"C:\barcode.png", 300, ImageFormat.Png);
       
    }
}

Remarks

This class can be used to draw a Aztec barcode image.

Constructors

Aztec(Byte[], AztecSymbolSize)Initializes a new instance of the Aztec class.
Aztec(Byte[], AztecSymbolSize, Single)Initializes a new instance of the Aztec class.
Aztec(String, AztecSymbolSize)Initializes a new instance of the Aztec class.
Aztec(String, AztecSymbolSize, Single)Initializes a new instance of the Aztec class.

Properties

AllowStructuredAppendGets or Sets a boolean indicating whether to allow structured append of the overflow barcodes.
BackColorGets or sets the background color of the barcode.
(Inherited from Barcode)
BarcodeMarginGets or Sets the margins of the barcode.
(Inherited from Barcode)
BarColorGets or sets the bar color of the barcode.
(Inherited from Barcode)
ErrorCorrectionGets or Sets the error correction value.
IsReaderInitializationSymbolGets or Sets a boolean representing if the barcode is a reader initialization symbol.
MessageIDGets or Sets the message id for the overflow barcodes.
ProcessTildeGets or Sets a boolean indicating whether to process tilde symbol in the input.
SizeGets the barcode size, AztecSymbolSize .
UnitGets or sets the unit of the barcode.
(Inherited from Barcode)
ValueGets the barocode value only if the string value is set.
XDimensionGets or sets the XDimension of the barcode.
(Inherited from Barcode)

Methods

Draw(Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(Single, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(String, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Draw(String, Single, Single, ImageFormat)Draw barcode image.
(Inherited from Barcode)
Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetOverflowAztec()Gets a new instance of the Aztec class.
GetRecommendedQuietZone(Single, Single)Gets the recommanded quietzone of the barcode.
(Inherited from Barcode)
GetRequiredSize(Single, Single)Returns the size required to display the full barcode.
(Inherited from Barcode)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicBarcode.Creator

In this topic