iDRS™ SDK 16
Loading...
Searching...
No Matches
CSearchMatch_interface.h
Go to the documentation of this file.
1
7#ifndef CSEARCHMATCH_INTERFACE_H
8
9#define CSEARCHMATCH_INTERFACE_H
10
12#include "ArrayInterface.h"
13
14#include "idrs_common.h"
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
27unsigned int CSearchMatch_GetPageIndex(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
28
36IDRS_RECT CSearchMatch_GetBoundingBox(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
37
49const idrs_string CSearchMatch_GetFormattedText(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
50
58const idrs_string CSearchMatch_GetRawText(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
59
67const CSearchMatch CSearchMatch_GetFollower(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
68
76const idrs_string CSearchMatch_GetIdentifier(const CSearchMatch argCSearchMatch, idrs_exception *pargException);
77
86CSearchMatchArray ArrayInterface_Create_CSearchMatchArray(idrs_exception *pargException);
87
88#ifdef __cplusplus
89}
90#endif /* __cplusplus */
91
92#endif /* CSEARCHMATCH_INTERFACE_H */
Interface for TObjPtrArray wrapper.
IDRS_RECT CSearchMatch_GetBoundingBox(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Gets the coordinates of the part on the page.
const idrs_string CSearchMatch_GetIdentifier(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Retrieves the identifier of the matched search context.
unsigned int CSearchMatch_GetPageIndex(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Gets the 0-based index of the page where the part is located.
const CSearchMatch CSearchMatch_GetFollower(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Gets the follower match for this match available in case of chained search.
CSearchMatchArray ArrayInterface_Create_CSearchMatchArray(idrs_exception *pargException)
Creates a new CSearchMatchArray object.
const idrs_string CSearchMatch_GetFormattedText(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Gets a formatted version of the matched text. Formatting includes:
const idrs_string CSearchMatch_GetRawText(const CSearchMatch argCSearchMatch, idrs_exception *pargException)
Gets the matched text as written on the page.
Represents a potential match for a given search.
Class that handles a string of characters.
Interface for idrs_string wrapper.
Structure that defines the upper-left and lower-right corners of a rectangle.
Definition idrsstd_interface.h:60