VCFile.FileType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置文件的类型。
public:
property Microsoft::VisualStudio::VCProjectEngine::eFileType FileType { Microsoft::VisualStudio::VCProjectEngine::eFileType get(); void set(Microsoft::VisualStudio::VCProjectEngine::eFileType value); };
public:
property Microsoft::VisualStudio::VCProjectEngine::eFileType FileType { Microsoft::VisualStudio::VCProjectEngine::eFileType get(); void set(Microsoft::VisualStudio::VCProjectEngine::eFileType value); };
[System.Runtime.InteropServices.DispId(410)]
public Microsoft.VisualStudio.VCProjectEngine.eFileType FileType { [System.Runtime.InteropServices.DispId(410)] get; [System.Runtime.InteropServices.DispId(410)] set; }
[<System.Runtime.InteropServices.DispId(410)>]
[<get: System.Runtime.InteropServices.DispId(410)>]
[<set: System.Runtime.InteropServices.DispId(410)>]
member this.FileType : Microsoft.VisualStudio.VCProjectEngine.eFileType with get, set
Public Property FileType As 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
注解
有关如何编译和运行此示例的信息,请参阅 如何:编译项目模型扩展性的示例代码 。