The results of a redaction operation.
Copy Code
|
|
---|---|
typedef struct tagAT_REC_REDACT_RESULT
{
HIGEAR higRedactedPage;
HIGEAR higUnredactedPage;
AT_INT letter_count;
LPAT_REC_APPROX_REGEX_LETTER* letters;
LPAT_WCHAR redacted_text;
LPAT_WCHAR unredacted_text;
} AT_REC_REDACT_RESULT, * LPAT_REC_REDACT_RESULT;
|
Name | Type | Description |
---|---|---|
higRedactedPage | HIGEAR | The handle to the redacted page. Default value is 0. |
higUnredactedPage | HIGEAR | The handle to the unredacted page. Default value is 0. |
letter_count | AT_INT | The number of LPAT_REC_APPROX_REGEX_LETTER instances in the letters array. This value is 0 if recognition information is unavailable for this match. Default value is 0. |
letters | LPAT_REC_APPROX_REGEX_LETTER* | A vector of LPAT_REC_APPROX_REGEX_LETTER instances for the redacted page. This value is 0 if recognition information is unavailable for this match. Letters are sorted in logical reading order. The length is equal to redacted_letter_count. Default value is 0. |
redacted_text | LPAT_WCHAR | The redacted text. The text is expressed as a UTF-16 string. Default value is an empty string. |
unredacted_text | LPAT_WCHAR | The unredacted text. The text is expressed as a UTF-16 string. Default value is an empty string. |