Skip to main content
A newer version of this page is available. .

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 The Barcode Control Displays
bceNone No error occurs. The generated barcode.
bceInvalidCharacters The source text contains characters unsupported by the active barcode symbology (or with the current symbology’s settings, if applicable). The sdxBarCodeInvalidCharactersError resource string value.
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). The sdxBarCodeInvalidTextFormatError resource string value.
bceBoudnsTooSmall The control’s boundaries are too small to display the generated barcode with the current settings. The sdxBarCodeControlTooNarrowError resource string value.
See Also