Compartilhar via


Propriedade _DTE.Find

Obtém o objeto de Find que representa operações globais de alterações de texto.

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

Sintaxe

'Declaração
ReadOnly Property Find As Find
Find Find { get; }
property Find^ Find {
    Find^ get ();
}
abstract Find : Find with get
function get Find () : Find

Valor de propriedade

Tipo: EnvDTE.Find
Um objeto Find.

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

_DTE Interface

Namespace EnvDTE