IFindService.CreateFinderFactory Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateFinderFactory(String, FindOptions) |
Create a factory to search for a particular |
CreateFinderFactory(String, String, FindOptions) |
Create a factory to search for a particular |
CreateFinderFactory(String, FindOptions)
Create a factory to search for a particular findWhat
and options
.
public:
Microsoft::VisualStudio::Text::Operations::IFinderFactory ^ CreateFinderFactory(System::String ^ findWhat, Microsoft::VisualStudio::Text::Operations::FindOptions options);
public Microsoft.VisualStudio.Text.Operations.IFinderFactory CreateFinderFactory (string findWhat, Microsoft.VisualStudio.Text.Operations.FindOptions options);
abstract member CreateFinderFactory : string * Microsoft.VisualStudio.Text.Operations.FindOptions -> Microsoft.VisualStudio.Text.Operations.IFinderFactory
Public Function CreateFinderFactory (findWhat As String, options As FindOptions) As IFinderFactory
Parameters
- findWhat
- String
- options
- FindOptions
Returns
Remarks
This can be called from any thread.
Note that parameters of the created factory may not quite match the parameters to this method. For example, findWhat
willl be converted to lower case unless the MatchCase option is set.
Applies to
CreateFinderFactory(String, String, FindOptions)
Create a factory to search for a particular findWhat
and options
with the potential to replace it with replaceWith
.
public:
Microsoft::VisualStudio::Text::Operations::IFinderFactory ^ CreateFinderFactory(System::String ^ findWhat, System::String ^ replaceWith, Microsoft::VisualStudio::Text::Operations::FindOptions options);
public Microsoft.VisualStudio.Text.Operations.IFinderFactory CreateFinderFactory (string findWhat, string replaceWith, Microsoft.VisualStudio.Text.Operations.FindOptions options);
abstract member CreateFinderFactory : string * string * Microsoft.VisualStudio.Text.Operations.FindOptions -> Microsoft.VisualStudio.Text.Operations.IFinderFactory
Public Function CreateFinderFactory (findWhat As String, replaceWith As String, options As FindOptions) As IFinderFactory
Parameters
- findWhat
- String
- replaceWith
- String
- options
- FindOptions
Returns
Remarks
This can be called from any thread.
Note that parameters of the created factory may not quite match the parameters to this method. For example, findWhat
willl be converted to lower case unless the MatchCase option is set.