New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public class DecodingEventArgs : EventArgs

Inheritance: objectEventArgsDecodingEventArgs

Inherited Members EventArgs.Empty

Constructors

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

C#
public DecodingEventArgs(BarcodeType codeTypeData, string resultTextData, string error)
Parameters:codeTypeDataBarcodeTyperesultTextDatastringerrorstring

Properties

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

C#
public BarcodeType CodeType { get; set; }

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

C#
public string ErrorMessage { get; set; }

This is the decoded text.

C#
public string Result { get; set; }