Find.ResultsLocation 屬性
取得或設定在大量搜尋作業中顯示結果的位置。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Property ResultsLocation As vsFindResultsLocation
vsFindResultsLocation ResultsLocation { get; set; }
property vsFindResultsLocation ResultsLocation {
vsFindResultsLocation get ();
void set (vsFindResultsLocation value);
}
abstract ResultsLocation : vsFindResultsLocation with get, set
function get ResultsLocation () : vsFindResultsLocation
function set ResultsLocation (value : vsFindResultsLocation)
屬性值
類型:EnvDTE.vsFindResultsLocation
vsFindResultsLocation 常數。
備註
有兩種可以顯示 Find 結果的可能結果清單。 您可以執行兩次搜尋而不覆寫掉第一次搜尋的結果。 您可以使用 setter 參數,決定要在其中置入 Find 結果的結果清單。
範例
Sub ResultsLocationExample()
Dim objTextDoc As TextDocument
Dim objEditPt As EditPoint
Dim iCtr As Integer
Dim objFind As Find
' Create a new text file.
DTE.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create an EditPoint.
objTextDoc = DTE.ActiveDocument.Object("TextDocument")
objEditPt = objTextDoc.StartPoint.CreateEditPoint
objFind = objTextDoc.DTE.Find
' Insert ten lines of text.
For iCtr = 1 To 10
objEditPt.Insert("This is a test." & Chr(13))
Next iCtr
' Set the find options.
objFind.Action = vsFindAction.vsFindActionReplaceAll
objFind.Backwards = False
objFind.FilesOfType = "*.txt"
objFind.FindWhat = "test"
objFind.KeepModifiedDocumentsOpen = True
objFind.MatchCase = False
objFind.MatchInHiddenText = False
objFind.MatchWholeWord = True
objFind.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral
objFind.ReplaceWith = "NEW THING"
objFind.ResultsLocation = vsFindResultsLocation.vsFindResultsNone
objFind.SearchPath = "c:\temp"
objFind.SearchSubfolders = False
objFind.Target = vsFindTarget.vsFindTargetCurrentDocument
' Perform the Find operation.
objFind.Execute()
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。