Skip to main content

TdxBarCodeErrorType Enum

Enumerates barcode generation errors.

Declaration

TdxBarCodeErrorType = (
    bceNone,
    bceInvalidCharacters,
    bceInvalidTextFormat,
    bceBoundsTooSmall
);

Members

Name
bceNone
bceInvalidCharacters
bceInvalidTextFormat
bceBoundsTooSmall

Remarks

Barcode generation error states include:

Value Description
bceNone No error occurs.
bceInvalidCharacters The source text contains characters unsupported by the active barcode symbology (or with the current symbology’s settings, if applicable).
bceInvalidTextFormat The source text is too long to be encoded by using the current barcode symbology (or with the current symbology’s settings, if applicable).
bceBoudnsTooSmall The control’s boundaries are too small to display the generated barcode with the current settings.
See Also