VCAssemblyReference.SubType 屬性
取得或設定檔案的子型別,如設計工具可以辨識。
命名空間: Microsoft.VisualStudio.VCProjectEngine
組件: Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
語法
'宣告
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)
屬性值
型別:System.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
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。