Class
DecodingEventArgs

A class, representing the decoding event arguments, passed to the decoding complete handler.

Definition

Namespace:Telerik.Windows.Controls.Barcode

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public class DecodingEventArgs : EventArgs

Inheritance: objectEventArgsDecodingEventArgs

Inherited Members EventArgs.Empty

Constructors

DecodingEventArgs(BarcodeType, string, string)

Initializes a new instance of the DecodingEventArgs class. This class contain event arguments data for the decoding process.

Declaration

cs-api-definition
public DecodingEventArgs(BarcodeType codeTypeData, string resultTextData, string error)

Parameters

codeTypeData

BarcodeType

resultTextData

string

error

string

Properties

CodeType

This is the code type for the code, such as UPCA.

Declaration

cs-api-definition
public BarcodeType CodeType { get; set; }

Property Value

BarcodeType

ErrorMessage

This is the error message, which is populated if decoding fails.

Declaration

cs-api-definition
public string ErrorMessage { get; set; }

Property Value

string

Result

This is the decoded text.

Declaration

cs-api-definition
public string Result { get; set; }

Property Value

string