Barcode Plugin for Xojo

QRCodeGenerator.ErrorCodeType Enum

A enum representing error codes that can be returned by the LastError property.

enum QRCodeGenerator.ErrorCodeType

Constants

NO_ERROR = 0No error occurred.
DATA_TO_LONG_ERROR = 1The data supplied to put in the QRCode was to long.
UNKNOWN_ERROR = 2Unknown error.
NO_DATA_SUPPLIED_ERROR = 3The data string supplied was empty.
COULD_NOT_CONVERT_DATA_TO_UTF8_ERROR = 4Could not convert the data string that was supplied to UTF8 encoding.
SIZE_SMALLER_THAN_MIN_SIZE = 5The requested size is smaller than minimum size for the given QRCode.
PDFPAGE_WAS_NIL = 6The passed in pdfPage parameter was nil.
PDFPAGE_WAS_NOT_VALID = 7The passed in pdfPage parameter was not nil but was not a valid EinhugurPDFWriter.Page object from the PDF Plugin.