Document::ExtenderCATID Property
Visual Studio 2015
Gets the Extender category ID (CATID) for the object.
Assembly: EnvDTE (in EnvDTE.dll)
The CATID is typically specific to an implementation of an object.
Sub ExtenderCATIDExample() Dim objDoc As Document objDoc = DTE.ActiveDocument If Not (objDoc Is Nothing) Then MsgBox(objDoc.ExtenderCATID) End If End Sub
Show: