IntelligentMailBarcode

Represents a Intelligent mail barcode.

public class IntelligentMailBarcode : TextBarcode
Public Class IntelligentMailBarcode
    Inherits TextBarcode

Inheritance: ObjectBarcodeLinearBarcodeTextBarcodeIntelligentMailBarcode

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 Intelligent mail barcode image.

Imports System
Imports ceTe.DynamicBarcode.Creator

Module MyModule

   Sub Main()

   'Create a barcode object.
   Dim barcode As IntelligentMailBarcode = New IntelligentMailBarcode("0123456709498765432101234567891")

   '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.
        IntelligentMailBarcode barcode = new IntelligentMailBarcode("0123456709498765432101234567891");

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

Remarks

This class can be used to draw a Intelligent mail barcode image.

Constructors

IntelligentMailBarcode(String)Initializes a new instance of the IntelligentMailBarcode class.

Properties

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)
FontSizeFont size in points.
(Inherited from TextBarcode)
MailerIDLengthGets or sets a value indicating the length of mailer ID.
ShowTextGets or sets a value indicating if the value should be placed as text below the barcode.
(Inherited from TextBarcode)
ShowTextAboveGets or sets a value indicating if the value should be placed as text above or below the barcode.
SymbolHeightGets or sets symbol height of barcode.
(Inherited from LinearBarcode)
TextAlignGets or sets the alignment to use when displaying the text.
(Inherited from TextBarcode)
TextColorGets or set the color of the text.
(Inherited from TextBarcode)
UnitGets or sets the unit of the barcode.
(Inherited from Barcode)
ValueGets or sets the value of barcode.
(Inherited from LinearBarcode)
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)
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