VCFile.SubType Property

Gets or sets the file's subtype as understood by the designers.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

'Declaration
Property SubType As String
string SubType { get; set; }
property String^ SubType {
    String^ get ();
    void set (String^ value);
}
abstract SubType : string with get, set
function get SubType () : String 
function set SubType (value : String)

Property Value

Type: System.String
The file's subtype.

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("Sub-type: " & file.SubType)
        Next
    End Sub
End Module

.NET Framework Security

See Also

Reference

VCFile Interface

Microsoft.VisualStudio.VCProjectEngine Namespace