Back to Devexpress

PharmacodeGenerator Class

corelibraries-devexpress-dot-xtraprinting-dot-barcode-82a1b7e7.md

latest2.9 KB
Original Source

PharmacodeGenerator Class

Generates a visual representation of the Pharmacode barcode.

Namespace : DevExpress.XtraPrinting.BarCode

Assembly : DevExpress.Printing.v25.2.Core.dll

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
public class PharmacodeGenerator :
    BarCodeGeneratorBase
vb
Public Class PharmacodeGenerator
    Inherits BarCodeGeneratorBase

Remarks

The following code creates a one-track Pharmacode and specifies its properties:

View Example: How to add a bar code to a report

csharp
using System;
using System.Collections.Generic;
using System.Drawing.Printing;
using System.Windows.Forms;
using DevExpress.XtraPrinting.BarCode;
using DevExpress.XtraReports.UI;
// ...
public XRBarCode CreatePharmacodeBarCode(string BarCodeText) {
    // Create a bar code control.
    XRBarCode barCode = new XRBarCode();

    // Set the type to the Pharmacode.
    barCode.Symbology = new PharmacodeGenerator() {
        // Specify the Pharmacode type.
        PharmacodeType = PharmacodeType.OneTrack
    };

    // Adjust the appearance.
    barCode.Text = BarCodeText;
    barCode.Height = 100;
    barCode.Width = 220;

    return barCode;
}
vb
Imports System
Imports System.Collections.Generic
Imports System.Drawing.Printing
Imports System.Windows.Forms
Imports DevExpress.XtraPrinting.BarCode
Imports DevExpress.XtraReports.UI
' ...
Public Function CreatePharmacodeBarCode(ByVal BarCodeText As String) As XRBarCode
    ' Create a bar code control.
    Dim barCode As New XRBarCode()

    ' Set the bar code's type to Pharmacode
    barCode.Symbology = New PharmacodeGenerator() With {.PharmacodeType = PharmacodeType.OneTrack}

    barCode.Text = BarCodeText
    barCode.Height = 100
    barCode.Width = 220

    Return barCode
End Function

Inheritance

Object DevExpress.Printing.Utils.DocumentStoring.StorableObjectBase BarCodeGeneratorBase PharmacodeGenerator

See Also

PharmacodeGenerator Members

DevExpress.XtraPrinting.BarCode Namespace