VCAssemblyReference.SubType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置设计器能识别的文件子类型。
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(2019)]
public string SubType { [System.Runtime.InteropServices.DispId(2019)] get; [System.Runtime.InteropServices.DispId(2019)] set; }
[<System.Runtime.InteropServices.DispId(2019)>]
[<get: System.Runtime.InteropServices.DispId(2019)>]
[<set: System.Runtime.InteropServices.DispId(2019)>]
member this.SubType : string with get, set
Public Property SubType As String
属性值
文件的子类型。
实现
- 属性
示例
' 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