共用方式為


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 安全性

請參閱

參考

ProjectItem 介面

EnvDTE 命名空間

其他資源

控制專案與方案