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:
- An active DynamicPDF Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicBarcode Creator selected.
- A DynamicBarcode Creator for .NET v2.X Developer license.
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
Address | Gets or sets included address in the macro PDF417 barcode. |
BackColor | Gets or sets the background color of the barcode. (Inherited from Barcode) |
BarcodeMargin | Gets or Sets the margins of the barcode. (Inherited from Barcode) |
BarColor | Gets or sets the bar color of the barcode. (Inherited from Barcode) |
Compaction | Gets or sets the type of compaction. (Inherited from Pdf417) |
CompactPdf417 | Gets or sets the Compact Pdf417. (Inherited from Pdf417) |
ErrorCorrectionLevel | Gets or sets the error correction level for the PDF417 barcode. (Inherited from Pdf417) |
FileName | Gets or sets included file name in the macro PDF417 barcode. |
IncludeChecksum | Specifies whether check sum should be included in macro PDF417 barcode or not. |
IncludeFileSize | Specifies whether file size should be included in macro PDF417 barcode or not. |
IncludeTimestamp | Specifies whether time stamp should be included in macro PDF417 barcode or not. |
ModuleSizeRatio | Gets or sets the ModuleSizeRatio of barcode. This is the ratio of the height and the width of one module in barcode. (Inherited from Pdf417) |
Sender | Gets or sets included sender in the macro PDF417 barcode. |
Unit | Gets or sets the unit of the barcode. (Inherited from Barcode) |
XDimension | Gets 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) |