DecodingEventArgs
Class
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
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)
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; }