Class Code39ExtendedBarcode
Represents a class which is designed to encode 128 full ASCII characters.
Inheritance
System.Object
Code39ExtendedBarcode
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class Code39ExtendedBarcode : Code39Barcode, INotifyPropertyChanged
Remarks
This class provides the base class for the following SfBarcode types,
Examples
<syncfusion:SfBarcode Width="200" Height="200" Value="48625310">
<syncfusion:SfBarcode.Symbology>
<syncfusion:Code39ExtendedBarcode/>
</syncfusion:SfBarcode.Symbology>
</syncfusion:SfBarcode>
using Syncfusion.UI.Xaml.Barcode
…
SfBarcode sfBarcode = new SfBarcode();
sfBarcode.Value = "48625310";
sfBarcode.Symbology = new Code39ExtendedBarcode();
Constructors
Code39ExtendedBarcode()
Initializes a new instance of the Code39ExtendedBarcode class.
Declaration
public Code39ExtendedBarcode()
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[] | check digit |
Overrides
GetExtendedText(SfBarcode)
Internal method to get the extended text.
Declaration
protected override string GetExtendedText(SfBarcode barcode)
Parameters
Type | Name | Description |
---|---|---|
SfBarcode | barcode | The Barcode. |
Returns
Type | Description |
---|---|
System.String | Returns Extended Text. |
Overrides
Implements
System.ComponentModel.INotifyPropertyChanged