Finds all the master form candidates for a form page using full text search.
public IList<FullTextSearchItem> GetFullTextSearchCandidatesPage(
FormRecognitionAttributes formAttributes,
int pageNumber,
int masterFormPageNumber,
string repositoryName,
string language,
FormProgressCallback formCallback,
PageProgressCallback pageCallback
)
formAttributes
The form attribute object. Must not be null.
pageNumber
1-based page number of the form to compare.
masterFormPageNumber
1-based page number of the master form to compare.
repositoryName
Repository name. If this value is null or an empty string, then an empty string is used to indicate a default repository without a name.
language
Optional language of the form. Passing null will default to "en-US" (or locale ID 1033).
formCallback
Status about the progress of the operation at the form level (i.e. page by page). Can be null.
pageCallback
Provides status on the progress of the operation at the page level. Can be null.
List of candidates sorted by rank.
This method creates a new instance of FullTextSearchItem, fills it up using the values described below and then calls IFullTextSearchManager.Search to perform its operation:
Member |
Value |
---|---|
repositoryName parameter. |
|
masterFormPageNumber parameter. |
|
language parameter. |
|
Content of the page of the form obtained upon its initialization. |
|
Value of FullTextSearchMinimumRank. |
For more information, refer to Speeding Up Forms Recognition Using the Full Text Search Feature.