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 值。
備註
如需如何編譯及執行範例的詳細資訊,請參閱 如何:編譯專案模型擴充性的範例程式碼 。
範例
' 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。