Class Code11Barcode
Represents a class that can encode the following characters [0-9]; [-].
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class Code11Barcode : UnidimensionalBarcode, INotifyPropertyChanged
Remarks
This class provides the base class for the following SfBarcode types,
Examples
<syncfusion:SfBarcode Width="190" Height="200" Value="1010111011">
<syncfusion:SfBarcode.Symbology>
<syncfusion:Code11Barcode/>
</syncfusion:SfBarcode.Symbology>
</syncfusion:SfBarcode>
using Syncfusion.UI.Xaml.Barcode
…
SfBarcode sfBarcode = new SfBarcode();
sfBarcode.Value = "1010111011";
sfBarcode.Symbology = new Code11Barcode();
Constructors
Code11Barcode()
Initializes a new instance of the Code11Barcode class.
Declaration
public Code11Barcode()
Methods
CalculateCheckDigit(SfBarcode)
Calculates the check digit for this barcode specification.
Declaration
protected override char[] CalculateCheckDigit(SfBarcode barcode)
Parameters
Type | Name | Description |
---|---|---|
SfBarcode | barcode | The Barcode. |
Returns
Type | Description |
---|---|
System.Char[] | The Check digits. |
Overrides
Implements
System.ComponentModel.INotifyPropertyChanged