|
Foxit PDF SDK
|
Inherits Object.
Public Types | |
| enum | CompareResultType { e_CompareResultTypeNone = -1, e_CompareResultTypeDeleteText = 0, e_CompareResultTypeInsertText = 1, e_CompareResultTypeReplaceText = 2, e_CompareResultTypeDeleteImage = 6, e_CompareResultTypeInsertImage = 7, e_CompareResultTypeReplaceImage = 8, e_CompareResultTypeDeletePath = 9, e_CompareResultTypeInsertPath = 10, e_CompareResultTypeReplacePath = 11, e_CompareResultTypeDeleteShading = 12, e_CompareResultTypeInsertShading = 13, e_CompareResultTypeReplaceShading = 14, e_CompareResultTypeDeleteAnnot = 15, e_CompareResultTypeInsertAnnot = 16, e_CompareResultTypeReplaceAnnot = 17, e_CompareResultTypeTextAttriChange = 18 } |
| Enumeration for compare result type. More... | |
Public Member Functions | |
| CompareResultInfo () | |
| Constructor. | |
| CompareResultInfo (CompareResultType type, RectFArray rect_array, WString diff_contents) | |
| Constructor, with parameters. More... | |
| CompareResultInfo (const CompareResultInfo &result_info) | |
| Constructor, with another result information object. More... | |
| CompareResultInfo & | operator= (const CompareResultInfo &result_info) |
| Assign operator. More... | |
Public Attributes | |
| WString | diff_contents |
| Different contents as compared result. | |
| RectFArray | rect_array |
| Rectangle array which specifies the location of parameter diff_contents in the PDF page to be compared. | |
| CompareResultType | type |
| Result type. Please refer to values starting from CompareResultInfo::e_CompareResultTypeNone and this should be one of these values. | |
This class represents the compare result information.
Enumeration for compare result type.
Values of this enumeration can be used alone.
|
inline |
Constructor, with parameters.
| [in] | type | Result type. Please refer to values starting from CompareResultInfo::e_CompareResultTypeNone and this should be one of these values. |
| [in] | rect_array | Rectangle array which specifies the location of parameter diff_contents in the PDF page to be compared. |
| [in] | diff_contents | Different contents as compared result. |
|
inline |
Constructor, with another result information object.
| [in] | result_info | Another result information object. |
|
inline |
Assign operator.
| [in] | result_info | Another result information object, whose value would be assigned to current object. |