This topic has not yet been rated - Rate this topic

DTE2.Find Property

Gets the Find object that represents global text find operations.

Namespace:  EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)
Find Find { get; }

Property Value

Type: EnvDTE.Find
A Find object.
Sub FindExample()
  ' Creates a text file, searches for a string, and then displays it.
  DTE2.executecommand("File.NewFile", "c:\temp\test.txt")
  DTE2.Find.FindWhat = "mytest"
  MsgBox(DTE2.Find.FindWhat)
End Sub
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.