Class Code93Barcode
Represents a class which can encode the following characters, [0-9]; [A-Z]; [- . $ / + % SPACE].
Inheritance
System.Object
    
    
    
    Code93Barcode
      
  Implements
System.ComponentModel.INotifyPropertyChanged
  Inherited Members
Namespace: Syncfusion.UI.Xaml.Barcode
Assembly: Syncfusion.Barcode.WinUI.dll
Syntax
public class Code93Barcode : UnidimensionalBarcode, INotifyPropertyChangedRemarks
If lowercase characters are required, then a Code93ExtendedBarcode must be used.
Examples
<syncfusion:SfBarcode Width="200" Height="200" Value="48625310">
     <syncfusion:SfBarcode.Symbology>
          <syncfusion:Code93Barcode/>
     </syncfusion:SfBarcode.Symbology>
</syncfusion:SfBarcode>using Syncfusion.UI.Xaml.Barcode
�
SfBarcode sfBarcode = new SfBarcode();
sfBarcode.Value = "48625310";
sfBarcode.Symbology = new Code93Barcode();Constructors
Code93Barcode()
Initializes a new instance of the Code93Barcode class.
Declaration
public Code93Barcode()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(SfBarcode)
Internal method to calculate the check-digit
Declaration
protected char[] GetCheckSumSymbols(SfBarcode barcode)Parameters
| Type | Name | Description | 
|---|---|---|
| SfBarcode | barcode | The Barcode. | 
Returns
| Type | Description | 
|---|---|
| System.Char[] | symbols | 
Implements
      System.ComponentModel.INotifyPropertyChanged