Solution4::ExtenderCATID Property

 

Gets the Extender category ID (CATID) for the object.

Namespace:   EnvDTE100
Assembly:  EnvDTE100 (in EnvDTE100.dll)

property String^ ExtenderCATID {
	String^ get();
}

Property Value

Type: System::String^

A GUID representing the CATID of the object.

Returns the GUID representing the CATID of the object as a string.

System_CAPS_noteNote

The CATID is typically specific to an implementation of an object. For example, the ExtenderCATID for a Visual Basic project object is different from the ExtenderCATID for a Visual C++ project object.

Sub ExtenderCATIDExample()
   Dim objDoc As Document
   objDoc = DTE.ActiveDocument
   If Not (objDoc Is Nothing) Then
      MsgBox(objDoc.ExtenderCATID)
   End If
End Sub
Return to top
Show: