ComponentOne BarCode for WinForms
EncodingError Event

C1.Win.BarCode.4 Assembly > C1.Win.BarCode Namespace > C1BarCode Class : EncodingError Event
Occurs when text entered into the C1BarCode cannot be encoded into barcode image.
Syntax
'Declaration
 
Public Event EncodingError As System.EventHandler(Of EncodingErrorEventArgs)
public event System.EventHandler<EncodingErrorEventArgs> EncodingError
Event Data

The event handler receives an argument of type EncodingErrorEventArgs containing data related to this event. The following EncodingErrorEventArgs properties provide information specific to this event.

PropertyDescription
Gets internal code of the error.  
Gets the exception that initially triggered the EncodingError event.  
Gets the text of exception. It can be changed by user.  
Gets or sets a value that indicates whether Exception should be thrown.  
See Also