menu

WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class CodabarBarcode - WinUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class CodabarBarcode

    Represents a class for numeric symbology that can encode the following types [0-9]; [- $ : / . +].

    Inheritance
    System.Object
    NotificationObject
    BarcodeBase
    UnidimensionalBarcode
    CodabarBarcode
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Inherited Members
    NotificationObject.PropertyChanged
    NotificationObject.RaisePropertyChanged(String)
    NotificationObject.RaisePropertyChanged(String[])
    UnidimensionalBarcode.CalculateCheckDigit(SfBarcode)
    UnidimensionalBarcode.EnableCheckSum
    UnidimensionalBarcode.EncodeStartStopSymbols
    UnidimensionalBarcode.GetExtendedText(SfBarcode)
    UnidimensionalBarcode.GetTextToEncode(SfBarcode)
    UnidimensionalBarcode.ShowCheckSum
    UnidimensionalBarcode.Validate(String)
    Namespace: Syncfusion.UI.Xaml.Barcode
    Assembly: Syncfusion.Barcode.WinUI.dll
    Syntax
    public class CodabarBarcode : UnidimensionalBarcode, INotifyPropertyChanged
    Remarks

    This class provides the base class for the following SfBarcode types,

    • CodabarBarcode
    • Code11Barcode
    • Code128ABarcode
    • Code128BBarcode
    • Code128CBarcode
    • Code32Barcode
    • Code39Barcode
    • Code39ExtendedBarcode
    • Code93Barcode
    • Code93ExtendedBarcode
    • UpcBarcode
    Examples
    <syncfusion:SfBarcode Width="200" Height="200" Value="48625310">
         <syncfusion:SfBarcode.Symbology>
              <syncfusion:CodabarBarcode/>
         </syncfusion:SfBarcode.Symbology>
    </syncfusion:SfBarcode>
    using Syncfusion.UI.Xaml.Barcode
    …
    SfBarcode sfBarcode = new SfBarcode();
    sfBarcode.Value = "48625310";
    sfBarcode.Symbology = new CodabarBarcode();

    Constructors

    CodabarBarcode()

    Initializes a new instance of the CodabarBarcode class.

    Declaration
    public CodabarBarcode()

    Implements

    System.ComponentModel.INotifyPropertyChanged
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved