Solution2::ExtenderCATID Property
Visual Studio 2015
Gets the Extender category ID (CATID) for the object.
Assembly: EnvDTE80 (in EnvDTE80.dll)
Implements
_Solution::ExtenderCATIDReturns the GUID representing the CATID of the object as a string.
Note |
|---|
The CATID is typically specific to an implementation of an object. For example, the Project.ExtenderCATID for a Visual Basic project object is different from the Project.ExtenderCATID for a Visual C++ project object. |
Sub ExtenderCATIDExample(ByVal dte As DTE2) Dim objDoc As Document = dte.ActiveDocument If Not (objDoc Is Nothing) Then MsgBox(objDoc.ExtenderCATID) End If End Sub
Show:
