Freigeben über


_DTE.Find-Eigenschaft

Ruft das Find-Objekt ab, das globale Operationen für die Textsuche darstellt.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property Find As Find
Find Find { get; }
property Find^ Find {
    Find^ get ();
}
abstract Find : Find
function get Find () : Find

Eigenschaftswert

Typ: EnvDTE.Find
Ein Find-Objekt.

Beispiele

Sub FindExample()
  'Creates a text file, searches for a string, and then displays it.
  DTE.executecommand("File.NewFile", "c:\temp\test.txt")
  DTE.Find.FindWhat = "mytest"
  MsgBox(DTE.Find.FindWhat)
End Sub

.NET Framework-Sicherheit

Siehe auch

Referenz

_DTE Schnittstelle

EnvDTE-Namespace