Class DecodingEventArgs
A class, representing the decoding event arguments, passed to the decoding complete handler.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.Barcode
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class DecodingEventArgs : EventArgs
Constructors
DecodingEventArgs(BarcodeType, String, String)
Initializes a new instance of the DecodingEventArgs class. This class contain event arguments data for the decoding process.
Declaration
public DecodingEventArgs(BarcodeType codeTypeData, string resultTextData, string error)
Parameters
BarcodeType
codeTypeData
|
System.String
resultTextData
|
System.String
error
|
Properties
CodeType
This is the code type for the code, such as UPCA.
Declaration
public BarcodeType CodeType { get; set; }
Property Value
BarcodeType
|
ErrorMessage
This is the error message, which is populated if decoding fails.
Declaration
public string ErrorMessage { get; set; }
Property Value
System.String
|
Result
This is the decoded text.
Declaration
public string Result { get; set; }
Property Value
System.String
|