ITextSearchService2::Find Method (SnapshotPoint, String^, FindOptions)
Visual Studio 2015
Searches for the next occurrence of the given search pattern, using the given starting position and options.
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Nullable<SnapshotSpan> Find( SnapshotPoint startingPosition, String^ searchPattern, FindOptions options )
Parameters
- startingPosition
-
Type:
Microsoft.VisualStudio.Text::SnapshotPoint
[in] The position from which to begin the search.
- searchPattern
-
Type:
System::String^
[in] The text pattern to search for.
- options
-
Type:
Microsoft.VisualStudio.Text.Operations::FindOptions
[in] Options to use for the search.
Return Value
Type: System::Nullable<SnapshotSpan>Returns the text span containing the match if a match was found; otherwise, returns null if no matches were found.
This method is safe to be executed on any thread.
ArgumentException if the UseRegularExpressions option is set and the search string is an invalid regular expression.
Show: