Returns a Boolean value indicating whether pictures are supported by the specified format or not.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_converter_picture_saving_mode_is_applicable( LPCSTR lpszFormatName, LPAT_BOOL lpIsApplicable ); |
Name | Type | Description |
---|---|---|
lpszFormatName | LPCSTR | Symbolic name of the output format like Converters.Text.Cvs. |
lpIsApplicable | LPAT_BOOL | Buffer to retrieve a result of checking. TRUE means that the format supports page margins. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0;
AT_BOOL bCPSMIsApplicable = FALSE;
LPCSTR lpszFormatName = "Converters.Text.Csv";
ErrCount += IG_REC_output_format_set(lpszFormatName);
ErrCount += IG_REC_converter_picture_saving_mode_is_applicable(lpszFormatName,
&bCPSMIsApplicable);
|