BarcodeGenerator.ErrorCodeType Enum
A enum that represents error codes for the BarcodeGenerator class.
enum BarcodeGenerator.ErrorCodeType
Constants
NO_ERROR = 0 | No error occurred. |
INVALID_SYMBOL = 1 | The text passed in contained symbol that is invalid for the selected Barcode standard. |
UNKNOWN_ERROR = 2 | Unknown error occurred. |
NO_DATA_SUPPLIED = 3 | No value was supplied to generate barcode from. |
INCORRECT_LENGTH = 4 | The text passed in was of incorrect length for the selected Barcode standard. |
INVALID_NUMBER_SYSTEM = 5 | This error is generated when the combinations in barcode coding don't add up. |
PDFPAGE_OR_FONT_WAS_NIL = 6 | Either the passed in pdfPage parameter or the pdfFont parameter was nil. |
PDFPAGE_WAS_NOT_VALID = 7 | The passed in pdfPage parameter was not nil but was not a valid EinhugurPDFWriter.Page object from the PDF Plugin. |