menu

WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class Code93Barcode - WinUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class Code93Barcode

    Represents a class which can encode the following characters, [0-9]; [A-Z]; [- . $ / + % SPACE].

    Inheritance
    System.Object
    NotificationObject
    BarcodeBase
    UnidimensionalBarcode
    Code93Barcode
    Code93ExtendedBarcode
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Inherited Members
    NotificationObject.PropertyChanged
    NotificationObject.RaisePropertyChanged(String)
    NotificationObject.RaisePropertyChanged(String[])
    UnidimensionalBarcode.EnableCheckSum
    UnidimensionalBarcode.EncodeStartStopSymbols
    UnidimensionalBarcode.GetExtendedText(SfBarcode)
    UnidimensionalBarcode.GetTextToEncode(SfBarcode)
    UnidimensionalBarcode.ShowCheckSum
    UnidimensionalBarcode.Validate(String)
    Namespace: Syncfusion.UI.Xaml.Barcode
    Assembly: Syncfusion.Barcode.WinUI.dll
    Syntax
    public class Code93Barcode : UnidimensionalBarcode, INotifyPropertyChanged
    Remarks

    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
    UnidimensionalBarcode.CalculateCheckDigit(SfBarcode)

    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
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved