LookUp Method of the DataSetTableRecords Object
This method returns the results of a search in the data set. The search string can include any record information.
Syntax
Visual Basic .NET
Function LookUp(Query As String) As DataSetTableRecords
C++
HRESULT LookUp( BSTR Query, IDataSetTableRecords** Result );
Parameters
- Query
- [in] The search string.
- Result
- [out, retval] A pointer to IDataSetTableRecords* pointer variable that receives the interface pointer of the output DataSetTableRecords object containing the records that were found. You may not call the DeleteAll, DeleteAt, Commit, LookUp, AddNew, UpdateFromDB methods for this object. Only the Count and Element properties and Item method are available, so that you can iterate through the search results and retrieve or edit any of the records matching the search query.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
Samples
This method is used in the following code samples: Invoices Processing and Training.
See also
8/15/2023 1:19:30 PM