VCFile.FileType Property
Gets or sets the type of file.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
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)
Property Value
Type: Microsoft.VisualStudio.VCProjectEngine.eFileType
A eFileType value.
Remarks
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
Examples
' 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 Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.