Class Code32Barcode
Represents a class which encodes numeric value [0-9].
Inherited Members
Namespace: Syncfusion.UI.Xaml.Controls.Barcode
Assembly: Syncfusion.SfBarcode.UWP.dll
Syntax
public class Code32Barcode : Code39Barcode
Remarks
It is inherited from UnidimensionalBarcode. The barcode length is 9 digits (8 user defined digits + 1 check digit).
Constructors
Code32Barcode()
Initializes a new instance of the Code32Barcode class.
Declaration
public Code32Barcode()
Code32Barcode(String)
Initializes a new instance of the Code32Barcode class.
Declaration
public Code32Barcode(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The Barcode text. |
Methods
CalculateCheckDigit()
Calculates the check digit for this barcode specification.
Declaration
protected override char[] CalculateCheckDigit()
Returns
Type | Description |
---|---|
System.Char[] | The Check digits. |
Overrides
GetBarcodeSymbols()
Gets the barcode symbols.
Declaration
protected string GetBarcodeSymbols()
Returns
Type | Description |
---|---|
System.String | Encoded data |
GetDataToEncode(String)
To get the Actual Encoded Text from from original Text..
Declaration
protected string GetDataToEncode(string originalData)
Parameters
Type | Name | Description |
---|---|---|
System.String | originalData | The original data. |
Returns
Type | Description |
---|---|
System.String | original Data |
GetTextToEncode()
Returns the Actual text to encode.
Declaration
protected override string GetTextToEncode()
Returns
Type | Description |
---|---|
System.String | The Actual Text. |