Class Code93ExtendedBarcode
Represents a class which is designed to encode 128 full ASCII characters.
Inheritance
System.Object
    
    
    
    
    Code93ExtendedBarcode
  Implements
System.ComponentModel.INotifyPropertyChanged
  Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class Code93ExtendedBarcode : Code93Barcode, 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:Code93ExtendedBarcode/>
     </syncfusion:SfBarcode.Symbology>
</syncfusion:SfBarcode>using Syncfusion.UI.Xaml.Barcode
�
SfBarcode sfBarcode = new SfBarcode();
sfBarcode.Value = "48625310";
sfBarcode.Symbology = new Code93ExtendedBarcode();Constructors
Code93ExtendedBarcode()
Initializes a new instance of the Code93ExtendedBarcode class.
Declaration
public Code93ExtendedBarcode()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
GetCheckSumSymbols(String)
To get the Checksum value
Declaration
protected char[] GetCheckSumSymbols(string ExtendedText)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | ExtendedText | Gets the extended text with encoded value. | 
Returns
| Type | Description | 
|---|---|
| System.Char[] | checksum symbols | 
GetExtendedText(SfBarcode)
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