GetCompareFindingKind
Diagnostics
Description
Returns the kind of one comparison finding
Syntax
Delphi
Function GetCompareFindingKind(Index: Integer): Integer;Return values
| 0 | The index is out of range |
|---|---|
| 1..6 | 1 object added, 2 object removed, 3 object changed, 4 page-count difference, 5 text changed, 6 documents identical |
Remarks
Kind values map onto the added/removed/changed/page-count/text/identical classification described in CompareWith
Example
if PDF.GetCompareFindingKind(I)= 3 then ChangedCount:= ChangedCount+ 1;