menu

ASP.NET Web Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PdfCode93ExtendedBarcode

    Show / Hide Table of Contents

    Class PdfCode93ExtendedBarcode

    Inheritance
    System.Object
    PdfBarcode
    PdfUnidimensionalBarcode
    PdfCode93Barcode
    PdfCode93ExtendedBarcode
    Inherited Members
    PdfUnidimensionalBarcode.check
    PdfUnidimensionalBarcode.Draw(PdfGraphics)
    PdfUnidimensionalBarcode.Draw(PdfGraphics, PointF)
    PdfUnidimensionalBarcode.Draw(PdfGraphics, PointF, SizeF)
    PdfUnidimensionalBarcode.Draw(PdfGraphics, RectangleF)
    PdfUnidimensionalBarcode.Draw(PdfGraphics, Single, Single, Single, Single)
    PdfUnidimensionalBarcode.Draw(PdfPageBase, PointF)
    PdfUnidimensionalBarcode.Draw(PdfPageBase, PointF, SizeF)
    PdfUnidimensionalBarcode.Draw(PdfPageBase, RectangleF)
    PdfUnidimensionalBarcode.Draw(PdfPageBase, Single, Single, Single, Single)
    PdfUnidimensionalBarcode.Draw(PdfPageBase)
    PdfUnidimensionalBarcode.ToImage()
    PdfUnidimensionalBarcode.ToImage(SizeF)
    PdfUnidimensionalBarcode.Validate(String)
    PdfUnidimensionalBarcode.GetSizeValue()
    PdfUnidimensionalBarcode.GetExtendedTextValue()
    PdfUnidimensionalBarcode.PaintRectangle(PdfPageBase, RectangleF)
    PdfUnidimensionalBarcode.PaintRectangle(PdfGraphics, RectangleF)
    PdfUnidimensionalBarcode.PaintRectangleTag(PdfTemplate, RectangleF)
    PdfUnidimensionalBarcode.Font
    PdfUnidimensionalBarcode.TextDisplayLocation
    PdfUnidimensionalBarcode.ShowCheckDigit
    PdfUnidimensionalBarcode.EnableCheckDigit
    PdfUnidimensionalBarcode.BarcodeToTextGapHeight
    PdfUnidimensionalBarcode.TextAlignment
    PdfUnidimensionalBarcode.EncodeStartStopSymbols
    PdfBarcode.bounds
    PdfBarcode.size
    PdfBarcode.barHeight
    PdfBarcode.BackColor
    PdfBarcode.BarColor
    PdfBarcode.TextColor
    PdfBarcode.NarrowBarWidth
    PdfBarcode.Text
    PdfBarcode.Location
    PdfBarcode.QuietZone
    PdfBarcode.BarHeight
    PdfBarcode.Size
    PdfBarcode.Bounds
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.Pdf.Barcode
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public class PdfCode93ExtendedBarcode : PdfCode93Barcode
    Remarks

    All 128 ASCII characters can be encoded in an extended Code 93 barcode.

    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Creates a new page and adds it as the last page of the document
    PdfPage page = document.Pages.Add();
    //Create font and font style.
    PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold) ;
    //Creates a new PdfCode93ExtendedBarcode.
    PdfCode93ExtendedBarcode code93 = new PdfCode93ExtendedBarcode();
    //Set the font to code93Ext.
    code93Ext.Font = font;
    //Set the barcode text.
    code93Ext.Text = "CODE39Ext";
    //Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500));
    //Save the  document to disk.
    document.Save("Code93Ext.pdf");
    'Create a new PDF document.
    Dim document As PdfDocument = New PdfDocument()
    'Creates a new page and adds it as the last page of the document
    Dim page As PdfPage = document.Pages.Add()
    'Create font and font style.
    Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold)
    'Creates a new PdfCode93ExtendedBarcode.
    Dim code93Ext As PdfCode93ExtendedBarcode = New PdfCode93ExtendedBarcode()
    'Set the font to code93Ext.
    code93Ext.Font = font 
    'Set the barcode text.
    code93Ext.Text = "CODE39Ext"
    'Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500))
    'Save the  document to disk.
    document.Save("Code93Ext.pdf")

    Constructors

    PdfCode93ExtendedBarcode()

    Initializes a new instance of the PdfCode93ExtendedBarcode class.

    Declaration
    public PdfCode93ExtendedBarcode()
    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Creates a new page and adds it as the last page of the document
    PdfPage page = document.Pages.Add();
    //Create font and font style.
    PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold) ;
    //Creates a new PdfCode93ExtendedBarcode.
    PdfCode93ExtendedBarcode code93 = new PdfCode93ExtendedBarcode();
    //Set the font to code93Ext.
    code93Ext.Font = font;
    //Set the barcode text.
    code93Ext.Text = "CODE39Ext";
    //Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500));
    //Save the  document to disk.
    document.Save("Code93Ext.pdf");
    'Create a new PDF document.
    Dim document As PdfDocument = New PdfDocument()
    'Creates a new page and adds it as the last page of the document
    Dim page As PdfPage = document.Pages.Add()
    'Create font and font style.
    Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold)
    'Creates a new PdfCode93ExtendedBarcode.
    Dim code93Ext As PdfCode93ExtendedBarcode = New PdfCode93ExtendedBarcode()
    'Set the font to code93Ext.
    code93Ext.Font = font 
    'Set the barcode text.
    code93Ext.Text = "CODE39Ext"
    'Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500))
    'Save the  document to disk.
    document.Save("Code93Ext.pdf")

    PdfCode93ExtendedBarcode(String)

    Initializes a new instance of the PdfCode93ExtendedBarcode class.

    Declaration
    public PdfCode93ExtendedBarcode(string text)
    Parameters
    Type Name Description
    System.String text

    The Barcode text.

    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Creates a new page and adds it as the last page of the document
    PdfPage page = document.Pages.Add();
    //Create font and font style.
    PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold) ;
    //Creates a new PdfCode93ExtendedBarcode.
    PdfCode93ExtendedBarcode code93 = new PdfCode93ExtendedBarcode("Code93Ext");
    //Set the font to code93Ext.
    code93Ext.Font = font;
    //Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500));
    //Save the  document to disk.
    document.Save("Code93Ext.pdf");
    'Create a new PDF document.
    Dim document As PdfDocument = New PdfDocument()
    'Creates a new page and adds it as the last page of the document
    Dim page As PdfPage = document.Pages.Add()
    'Create font and font style.
    Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold)
    'Creates a new PdfCode93ExtendedBarcode.
    Dim code93Ext As PdfCode93ExtendedBarcode = New PdfCode93ExtendedBarcode("Code93Ext")
    'Set the font to code93Ext.
    code93Ext.Font = font 
    'Draw a barcode in the new Page.
    code93Ext.Draw(page, new PointF(25, 500))
    'Save the  document to disk.
    document.Save("Code93Ext.pdf")

    Methods

    CalculateCheckDigit()

    Calculates the check digit for this barcode specification.

    Declaration
    protected override char[] CalculateCheckDigit()
    Returns
    Type Description
    System.Char[]

    The Check digits.

    Overrides
    PdfCode93Barcode.CalculateCheckDigit()

    GetCheckSumSymbols()

    To get the Checksum value

    Declaration
    protected char[] GetCheckSumSymbols()
    Returns
    Type Description
    System.Char[]

    checksum symbols

    See Also

    PdfCodabarBarcode
    PdfCode11Barcode
    PdfCode128ABarcode
    PdfCode128BBarcode
    PdfCode128CBarcode
    PdfCode32Barcode
    PdfCode39Barcode
    PdfCode39ExtendedBarcode
    PdfCode93Barcode
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved