IsbnSupplement5

Represents an ISBN, 5 digit supplement barcode.

public class IsbnSupplement5 : Isbn
Public Class IsbnSupplement5
    Inherits Isbn

Inheritance: ObjectBarcodeUpcBaseIsbnIsbnSupplement5

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 an ISBN, 5 digit supplement barcode image.

Imports System
Imports ceTe.DynamicBarcode.Creator

Module MyModule

   Sub Main()

   'Create a barcode object.
   Dim barcode As IsbnSupplement5 = New IsbnSupplement5("978-1-23-456789-7","12345")

   '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.
        IsbnSupplement5 barcode = new IsbnSupplement5("978-1-23-456789-7","12345");

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

Remarks

This class can be used to draw an ISBN, 5 digit supplement barcode image.

Constructors

IsbnSupplement5(String, String)Initializes a new instance of the IsbnSupplement5 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)
ShowTextGets or sets a value indicating if the ISBN value should be placed as text above the barcode.
(Inherited from Isbn)
SupplementValueGets or sets the supplement value of the barcode.
SymbolHeightGet or set symbol height of the barcode.
(Inherited from UpcBase)
UnitGets or sets the unit of the barcode.
(Inherited from Barcode)
ValueGet or set value of the barcode.
(Inherited from UpcBase)
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