 
            Sets the string to be inserted into the output text signifying the end of a paragraph.
| 
                        Copy Code
                     | |
|---|---|
| AT_ERRCOUNT ACCUAPI IG_REC_converter_endparagraph_set( LPCSTR lpszFormatName, LPAT_WCHAR lpwszEndParagraph ); | |
| Name | Type | Description | 
|---|---|---|
| lpszFormatName | LPCSTR | Symbolic name of the output format like Converters.Text.Cvs. See IG_REC_output_format_set for more info about format names. | 
| lpwszEndParagraph | LPAT_WCHAR | String to be set as the end of a paragraph. | 
This function does not process image pixels.
| 
                        Copy Code
                     | |
|---|---|
| AT_ERRCOUNT ErrCount = 0; AT_INT iLength = 0; AT_BOOL bCEPIsApplicable = FALSE; LPCSTR lpszFormatName = "Converters.Text.Csv"; LPAT_WCHAR lpwszEndParagraph = L"This is the end of a paragraph"; ErrCount += IG_REC_output_format_set(lpszFormatName); ErrCount += IG_REC_converter_endparagraph_is_applicable(lpszFormatName, &bCEPIsApplicable); if(bCEPIsApplicable) ErrCount += IG_REC_converter_endparagraph_set(lpszFormatName, lpwszEndParagraph); | |
The function affects the following output formats:
The end paragraph string can't be set if the corresponding output format has not been selected with IG_REC_output_format_set at least once. In this case the function returns a non-zero value and appends IGE_REC_CONVERTER_NOT_INITIALIZED error code to the error stack.