Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxBarCodeErrorType Enum

Enumerates barcode generation errors.

#Declaration

Delphi
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