Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the Find object that represents global text find operations.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
ReadOnly Property Find As Find
'Usage
Dim instance As DTE2
Dim value As Find
value = instance.Find
Find Find { get; }
property Find^ Find {
Find^ get ();
}
function get Find () : Find
Property Value
Type: EnvDTE.Find
A Find object.
Implements
Examples
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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.