Class Code39Barcode
Represents a class which encodes the following characters [0-9]; [A-Z]; [- . $ / + % SPACE].
Inheritance
System.Object
Code39Barcode
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class Code39Barcode : UnidimensionalBarcode, INotifyPropertyChanged
Remarks
If lowercase characters are required, then a Code39ExtendedBarcode must be used.
Examples
<syncfusion:SfBarcode Width="200" Height="200" Value="48625310">
<syncfusion:SfBarcode.Symbology>
<syncfusion:Code39Barcode/>
</syncfusion:SfBarcode.Symbology>
</syncfusion:SfBarcode>
using Syncfusion.UI.Xaml.Barcode
…
SfBarcode sfBarcode = new SfBarcode();
sfBarcode.Value = "48625310";
sfBarcode.Symbology = new Code39Barcode();
Constructors
Code39Barcode()
Initializes a new instance of the Code39Barcode class.
Declaration
public Code39Barcode()
Methods
CalculateCheckDigit(SfBarcode)
Internal method to calculate the check-digit
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