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