MacroPdf417

Represents a MacroPdf417 barcode.

public class MacroPdf417 : Pdf417
Public Class MacroPdf417
    Inherits Pdf417

Inheritance: ObjectBarcodePdf417MacroPdf417

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 MacroPdf417 barcode image.

Imports System
Imports ceTe.DynamicBarcode.Creator

Module MyModule

   Sub Main()

   'Create a barcode object.
   Dim barcode As MacroPdf417 = New MacroPdf417("Hello World",3)

   '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.
        MacroPdf417 barcode = new MacroPdf417("Hello World",3);

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

Remarks

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

Constructors

MacroPdf417(Byte[], Int32)Initializes a new instance of the MacroPdf417 class.
MacroPdf417(Byte[], Int32, Int32)Initializes a new instance of the MacroPdf417 class.
MacroPdf417(String, Int32)Initializes a new instance of the MacroPdf417 class.
MacroPdf417(String, Int32, Int32)Initializes a new instance of the MacroPdf417 class.

Properties

AddressGets or sets included address in the macro PDF417 barcode.
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)
CompactionGets or sets the type of compaction.
(Inherited from Pdf417)
CompactPdf417Gets or sets the Compact Pdf417.
(Inherited from Pdf417)
ErrorCorrectionLevelGets or sets the error correction level for the PDF417 barcode.
(Inherited from Pdf417)
FileNameGets or sets included file name in the macro PDF417 barcode.
IncludeChecksumSpecifies whether check sum should be included in macro PDF417 barcode or not.
IncludeFileSizeSpecifies whether file size should be included in macro PDF417 barcode or not.
IncludeTimestampSpecifies whether time stamp should be included in macro PDF417 barcode or not.
ModuleSizeRatioGets or sets the ModuleSizeRatio of barcode. This is the ratio of the height and the width of one module in barcode.
(Inherited from Pdf417)
SenderGets or sets included sender in the macro PDF417 barcode.
UnitGets or sets the unit of the barcode.
(Inherited from Barcode)
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)
GetOverflowMacroPdf417()Gets a new instance of the MacroPdf417 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)
SetFileID(Int32)Sets the file ID in the macro PDF417 barcode.
SetFileID(Int32[])Sets the file ID array of numbers from 0 to 899 in the macro PDF417 barcode.
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicBarcode.Creator

In this topic