共用方式為


VCFile.FileType 屬性

取得或設定的檔案類型。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
Property FileType As eFileType
eFileType FileType { get; set; }
property eFileType FileType {
    eFileType get ();
    void set (eFileType value);
}
abstract FileType : eFileType with get, set
function get FileType () : eFileType
function set FileType (value : eFileType)

屬性值

型別:Microsoft.VisualStudio.VCProjectEngine.eFileType
eFileType 值。

備註

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。

範例

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim file As VCFile
        Dim col As IVCCollection
        Dim idx As Integer
        Dim prj As VCProject
        prj = DTE.Solution.Projects.Item(1).Object
        col = prj.Files
        For idx = 1 To col.Count
            file = col.Item(idx)
            MsgBox("File type: " & file.FileType.ToString)
        Next
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCFile 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間