IGR_Text_Compare_Elements¶
Compares elements within pages of documents and returns an enumerator for iterating through the differences.
Prototype¶
IGR_RETURN_CODE IGR_Text_Compare_Elements(
IGR_HPAGE page1,
const struct IGR_Page_Element* page1_ele_root,
IGR_HPAGE page2,
const struct IGR_Page_Element* page2_ele_root,
const struct IGR_Text_Compare_Settings* settings,
IGR_HTEXTCOMPARE* enumerator,
Error_Control_Block* error
)
Parameters¶
page1: IGR_HPAGE
The first page containing elements to compare.
page1_ele_root: Pointer to IGR_Page_Element
The root element of the first page to start comparison.
page2: IGR_HPAGE
The second page containing elements to compare.
page2_ele_root: Pointer to IGR_Page_Element
The root element of the second page to start comparison.
settings: Pointer to IGR_Text_Compare_Settings
Settings for text comparison.
enumerator: Pointer to IGR_HTEXTCOMPARE
Pointer to store the enumerator for iterating through differences.
error: Pointer to Error_Control_Block
Contains any error text.
Return value¶
Success: IGR_LONG
Returns IGR_OK.
Failure: IGR_LONG
Returns one of the possible IGR_E error codes.
Sample Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|