Searches the vault for objects that match the specified string.
Visual Basic |
---|
Public Function SearchForObjectsByString( _ ByVal SearchString As String, _ ByVal SortResults As Boolean, _ ByVal FullTextSearchFlags As MFFullTextSearchFlags _ ) As ObjectSearchResults |
Value | Description |
---|---|
MFFullTextSearchFlagsLookInFileData | Looks for matches in the file data of objects. |
MFFullTextSearchFlagsLookInMetaData | Looks for matches in the metadata (properties) of objects. |
MFFullTextSearchFlagsNone | None (indicates a basic Boolean search). |
MFFullTextSearchFlagsStemming | Enables stemming for all words in the search request. This includes inflected forms of the searched word. |
MFFullTextSearchFlagsTypeAllWords | Finds all of the words in the search request. |
MFFullTextSearchFlagsTypeAnyWords | Finds any of the words in the search request. |