QRCodeGenerator.ErrorCodeType Enum
A enum representing error codes that can be returned by the LastError property.
enum QRCodeGenerator.ErrorCodeType
Constants
NO_ERROR = 0 | No error occurred. |
DATA_TO_LONG_ERROR = 1 | The data supplied to put in the QRCode was to long. |
UNKNOWN_ERROR = 2 | Unknown error. |
NO_DATA_SUPPLIED_ERROR = 3 | The data string supplied was empty. |
COULD_NOT_CONVERT_DATA_TO_UTF8_ERROR = 4 | Could not convert the data string that was supplied to UTF8 encoding. |
SIZE_SMALLER_THAN_MIN_SIZE = 5 | The requested size is smaller than minimum size for the given QRCode. |
PDFPAGE_WAS_NIL = 6 | The passed in pdfPage 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. |