Class CodabarBarcode
Represents a class for numeric symbology that can encode the following types [0-9]; [- $ : / . +].
Implements
System.ComponentModel.INotifyPropertyChanged
  Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class CodabarBarcode : UnidimensionalBarcode, INotifyPropertyChangedRemarks
This class provides the base class for the following SfBarcode types,
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