ProjectItem.FileNames 屬性
取得與專案項目相關聯的檔案之完整路徑和名稱。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property FileNames ( _
index As Short _
) As String
string this[
short index
] { get; }
property String^ FileNames[[InAttribute] short index] {
String^ get ([InAttribute] short index);
}
abstract FileNames :
index:int16 -> string with get
JScript 不支援索引屬性。
參數
index
類型:Int16必要項。 索引的檔案名稱,從 1 到FileCount為專案項目。
屬性值
類型:String
代表與專案項目相關聯的檔案之完整路徑和名稱的字串。
備註
大部分的專案項目具有與它們相關聯的只有一個檔案,但有些語言有時可以有多個檔案,每個項目。 例如,ProjectItem中的表單Visual Basic和Visual C#代表原始程式檔,可以有另一個專案項目,例如.resx 檔案。
當專案項目ProjectItems屬性具有值,和ProjectItem物件都代表篩選磁碟上的資料夾,然後在FileNames屬性會傳回篩選器資料夾的名稱。
範例
Sub FileNamesExample()
Dim proj As Project
Dim projitems As ProjectItems
' Reference the current solution and its projects and project items.
proj = DTE.ActiveSolutionProjects(0)
projitems = proj.ProjectItems
' List the file name associated with the first project item.
MsgBox(projitems.Item(1).FileNames(1))
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。