This structure defines the parameters used by VAPIMWP_EDIT_FIND for a text search request.
#include <kvvapi.h> typedef struct tag_TPVAPIFindInfo { LPSTR lpszFindText; BOOL bFindDown; BOOL bMatchCase; BOOL bWholeWordOnly; } TPVAPIFindInfo;
|
A string containing the text to find. |
|
Specifies whether to search from the selected point in the document to the beginning or to the end of the document. |
|
Specifies whether to match the case of the search term. |
|
Specifies whether to search for whole words or partial words. Currently not implemented. |
|