Find.FilesOfType 屬性
取得或設定所要搜尋檔案的副檔名。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Property FilesOfType As String
string FilesOfType { get; set; }
property String^ FilesOfType {
String^ get ();
void set (String^ value);
}
abstract FilesOfType : string with get, set
function get FilesOfType () : String
function set FilesOfType (value : String)
屬性值
類型:String
所要搜尋檔案的副檔名。
備註
FilesOfType 引數可以是任何三個字元的副檔名,例如 .bas、.cpp、.txt 等。 此外,FilesOfType 也會對應到 [檔案類型] 方塊。 這是一份要搜尋的萬用字元模式比對清單,其中內容會以分號分隔。 它的運作方式類似 MS-DOS 的 dir 命令。 例如,您可以將 FilesOfType 設為 MyProg*.cpp。 但是您只能對在檔案內使用萬用字元,不能用在目錄中。 所以,不能使用 Sample*\abc*.cpp。
範例
Sub FilesOfTypeExample()
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。