Occurs if there is any invalid character in the Barcode property value.
type
{ Defined in the pBarcode2D unit }
TOnInvalidChar = procedure (Sender: TObject; Index: Integer; BarcodeChar: Char; LinearFlag: Boolean) of object;
property OnInvalidChar: TOnInvalidChar;
Sender: TObject; It is the object whose event handler is called.
Index: Integer; The index position of first invalid character in the barcode text that is specified by the Barcode property, the index 1 denotes that the first character is invalid character.
BarcodeChar: Char; The first invalid character in the barcode text that is specified by the Barcode property. The character is a WideChar if the UNICODE is supported by the Delphi or C++ Builder. Otherwise it is an AnsiChar.
LinearFlag: Bolean; It denotes whether the invalid character is in the the linear component of an EAN.UCC composite barcode symbol.
For the TBarcode2D_CCA, TBarcode2D_CCB, and TBarcode2D_CCC 2D barcode components, If the value of the parameter is true, the invalid character is in the Barcode property's value of the linear component that is specified by the Linear property, and both of the Index and BarcodeChar parameters are depend on the Barcode property's value of the linear component. Otherwise, the invalid char is in the Barcode property's value of the 2D barcode component, and both of the Index and BarcodeChar parameters are depend on the Barcode property's value of the 2D component.
For other barcode components, the value of the parameter is always false.
If the Locked property is set to false, the event occurs when any component property is changed to cause the barcode is redrew, or when the Draw, Clear, Size, DrawTo (Syntax 1), DrawToSize (Syntax 1), Print (Syntax 1), or PrintSize (Syntax 1) method is called. Even if the Image property isn't specified.
If the Locked property is set to true, the event occurs when the Locked property is set to false to cause the barcode is redrew, or the Draw, Clear, Size, DrawTo (Syntax 1), DrawToSize (Syntax 1), Print (Syntax 1), or PrintSize (Syntax 1) method is called. Even if the Image property isn't specified.