VCFile.SubType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the file's subtype as understood by the designers.
public:
property System::String ^ SubType { System::String ^ get(); void set(System::String ^ value); };
public:
property Platform::String ^ SubType { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(420)]
public string SubType { [System.Runtime.InteropServices.DispId(420)] get; [System.Runtime.InteropServices.DispId(420)] set; }
[<System.Runtime.InteropServices.DispId(420)>]
[<get: System.Runtime.InteropServices.DispId(420)>]
[<set: System.Runtime.InteropServices.DispId(420)>]
member this.SubType : string with get, set
Public Property SubType As String
Property Value
The file's subtype.
- Attributes
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
Remarks
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.