VCCodeFunction.IsTemplate 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 a value indicating whether the parent object is a template.
public:
property bool IsTemplate { bool get(); };
public:
property bool IsTemplate { bool get(); };
[System.Runtime.InteropServices.DispId(582)]
public bool IsTemplate { [System.Runtime.InteropServices.DispId(582)] get; }
[<System.Runtime.InteropServices.DispId(582)>]
[<get: System.Runtime.InteropServices.DispId(582)>]
member this.IsTemplate : bool
Public ReadOnly Property IsTemplate As Boolean
Property Value
true if a parent object is a template; otherwise, false.
- Attributes
Examples
This example adds a class, as well as a template parameter to that class, and then displays the value returned by IsTemplate
.
Sub IsTemplateClass()
Dim vcCM As VCCodeModel
Dim vcClass As VCCodeClass
vcCM = DTE.Solution.Item(1).CodeModel
vcClass = vcCM.AddClass("MyTemplateClass", "MyTemplateClass.h")
vcClass.StartPoint().CreateEditPoint().Insert("template <class T> ")
vcCM.Synchronize()
MsgBox(vcClass.IsTemplate.ToString())
End Sub
Remarks
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.