ImageGear Professional DLL v17.1 for Windows Accusoft
IG_REC_converter_endparagraph_is_applicable
Send Feedback  
ImageGear Professional DLL v17.1 for Windows > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Converter Settings Functions > IG_REC_converter_endparagraph_is_applicable

Glossary Item Box

Returns a Boolean value indicating whether or not EndParagraph setting is applicable for the given format.

Declaration:

  Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_converter_endparagraph_is_applicable(
   LPCSTR lpszFormatName,
   LPAT_BOOL lpIsApplicable
);

Arguments:

lpszFormatName Symbolic name of the output format like Converters.Text.Cvs.
lpIsApplicable Buffer to retrieve a result of checking. TRUE means that the format supports EndParagraph setting.

Return Value:

The number of ImageGear errors that occurred during the function call.

Supported Raster Image Formats:

This function does not process image pixels.

Remarks:

See IG_REC_converter_endparagraph_set for formats that support this setting.

Example:

  Copy Code
AT_ERRCOUNT ErrCount = 0;
AT_BOOL bCEPIsApplicable = FALSE;
LPCSTR lpszFormatName = "Converters.Text.Csv";

ErrCount += IG_REC_output_format_set(lpszFormatName);
ErrCount += IG_REC_converter_endparagraph_is_applicable(lpszFormatName,
    &bCEPIsApplicable);

©2012. Accusoft Corporation. All Rights Reserved.