Inquires the current setting of the Force Single Column mode.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_decomp_single_column_force_get(
LPAT_BOOL pbForceSingle
);
|
Arguments:
Name |
Type |
Description |
pbForceSingle |
LPAT_BOOL |
Address of a Boolean variable to hold the current Force Single Column mode setting. |
Return Value:
Returns the number of ImageGear errors that occurred during this function call.
Supported Raster Image Formats:
This function does not process image pixels.
Example:
|
Copy Code |
AT_ERRCOUNT ErrCount = 0;
AT_BOOL bSingleColumnForce = TRUE;
ErrCount += IG_REC_decomp_single_column_force_get(&bSingleColumnForce);
|