_DTE.Find 屬性
取得 Find 物件,表示全域文字尋找作業。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property Find As Find
Find Find { get; }
property Find^ Find {
Find^ get ();
}
abstract Find : Find with get
function get Find () : Find
屬性值
類型:EnvDTE.Find
Find 物件。
範例
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。