Click or drag to resize

mcErrorIDs Enumeration

Standard imaging engine error code constants. To determine if an error isa categorized imaging engine error code, use the following formula: bIsCategorizedErr = (Err.Number And mceImageEngineErrorMask) = mceImageEngineError Wnen comparing with the listed codes, the Err.Number should be masked by mceErrorCodeMask. For example: bIsCanceled = (Err.Number And mceErrorCodeMask) = mceCANCELLED

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Public Enumeration mcErrorIDs
Members
  Member nameValueDescription
mceImageEngineError-2080374784All categorized imaging engineerrors will have this code after being masked by mceImageEngineErrorMask.
mceImageEngineErrorMask-2080374784Mask by mceImageEngineErrorMaskto expose mceImageEngineError for all categorized imaging engine errors
mceErrorCodeMask65535Err.Number should be masked bythis value before comparing with any of the error codes here. For example: bIsCanceled = (Err.Number And mceErrorCodeMask) = mceCANCELLED
mceErrCatInterrupted1048576For categorized imagingengine errors, if (Err.Number And mceErrCatInterrupted) <> 0 then the error was caused by some deliberate interruption of an operation. This situation is usually not a problem, but it must still be treated as an error and stop macro execution. This is because the interrupted operation may not have completed tasks needed for subsequent steps in the macro.
mceErrCatDataProblem2097152For categorized imagingengine errors, if (Err.Number And mceErrCatDataProblem) <> 0 then the error was caused by some problem with the quantity or quality of the data being operated on. These errors might be a programming error, but those situations should be uncovered during testing. At run-time, many data problems are ultimately under the control of the user and just need to be detected and reported to them.
mceErrCatIOProblem4194304For categorized imagingengine errors, if (Err.Number And mceErrCatIOProblem) <> 0 then the error was caused by some problem relating to reading or writing a file or other input/output method (e.g., a data base). I-O problems include bad file names, wrong file formats, sharing violations, insufficient permissions to perform the file or database access, etcetera.
mceErrCatResourceLimit8388608For categorized imagingengine errors, if (Err.Number And mceErrCatResourceLimit) <> 0 then the error was caused by some problem relating to running out of a required resource. Resource problems include running out of memory, disk full, maximum limits for the particular method being reached, etcetera.
mceErrCatLicenseProblem16777216For categorized imagingengine errors, if (Err.Number And mceErrCatLicenseProblem) <> 0 then the error was caused by some problem relating to not having the required license or permission to perform the requested operation.
mceOUTOFMEMORY-2147024882Standard COM error. A required memory allocation failed.
mceINVALIDARG-2147024809Standard COM error. One of the parameters has an illegal value.
mcePOINTER-2147467261Standard COM error. An internal pointer or an object reference is invalid.
mceNOINTERFACE-2147467262Standard COM error. The required type of object was not supplied.
mceWRITEFAULT-2147287011Standard COM error. A disk error occurred during a write operation.
mceREADFAULT-2147287010Standard COM error. A disk error occurred during a read operation.
mceACCESSDENIED-2147024891Standard COM error. An object, a property, or a file cannot be accessed because it is read-only,
mceMEMBERNOTFOUND-2147352573Standard COM error. An object does not support the named property.
mceNOTLICENSED-2147221230already in use, or does not exist.
mceCANCELLED65408The user cancelled the operation.
mceNO_MEMORY65409Memory is insufficient to complete a request.
mceMEM_ACCESS65410There was an error accessing memory (cannot lock).
mceINV_SIZE65413The requested size for an image exceeeds the maximum.
mceINV_EXTENT65415There was a problem with extents.
mceINV_HANDLE65419An internal image or memory handle is invalid.
mceINV_CLASS65421The image class is invalid for the operation requested
mceINV_PARAM65423A parameter was invalid in the passing arguments.
mceNOT_SUPPORTED65424A command is not supported.
mceCLIPPED65425An AOI object was clipped.
mceEMPTY65426An AOI object is empty, or an optional property is not present.
mceINV_TYPE65427The AOI object type is incompatible with the requested operation.
See Also