Foxit PDF SDK
|
Inherits Object.
Public Types | |
enum | CheckSeverity { e_CheckSeverityInfo = 1, e_CheckSeverityWarning = 2, e_CheckSeverityError = 3 } |
Enumeration for check severity of a hit data. More... | |
Public Member Functions | |
HitData () | |
Constructor. | |
HitData (const HitData &other) | |
Constructor, with another hit data object. More... | |
bool | operator != (const HitData &other) const |
Not equal operator. More... | |
HitData & | operator= (const HitData &other) |
Assign operator. More... | |
bool | operator== (const HitData &other) const |
Equal operator. More... | |
Public Attributes | |
WString | comment |
Hit rule comment to explain more details about the rule. | |
WString | name |
Hit rule name. | |
int | page_index |
Page index, starting from 0. -1 means current hit data was hit in document level. | |
CheckSeverity | severity |
The check severity of current hit data. Please refer to values starting from HitData::e_CheckSeverityInfo and this should be one of these values. | |
WStringArray | trigger_values |
Array of trigger values. The count of triggered values is no more then triggered_count. | |
uint32 | triggered_count |
Represents how many times the hit operation for current data has been triggered during verifying or converting process. | |
This class represents a hit data. Hit data represents the data for a hit operation triggered during verifying or converting process.
|
inline |
Constructor, with another hit data object.
[in] | other | Another hit data object. |
|
inline |
Not equal operator.
[in] | other | Another hit data object. This function will check if current object is not equal to this one. |
Assign operator.
[in] | other | Another hit data object, whose value would be assigned to current object. |
|
inline |
Equal operator.
[in] | other | Another hit data object. This function will check if current object is equal to this one. |