Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the Extender category ID (CATID) for the object.
Namespace: EnvDTE90
Assembly: EnvDTE90 (in EnvDTE90.dll)
Syntax
'Declaration
ReadOnly Property ExtenderCATID As String
Get
string ExtenderCATID { get; }
property String^ ExtenderCATID {
String^ get ();
}
abstract ExtenderCATID : string
function get ExtenderCATID () : String
Property Value
Type: System.String
A GUID representing the CATID of the object.
Implements
Remarks
Returns 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 ExtenderCATID for a Visual Basic project object is different from the ExtenderCATID for a Visual C++ project object.
Examples
For information on how to run this add-in code, see How to: Compile and Run the Automation Object Model Code Examples.
Sub ExtenderCATIDExample()
Dim objDoc As Document
objDoc = DTE.ActiveDocument
If Not (objDoc Is Nothing) Then
MsgBox(objDoc.ExtenderCATID)
End If
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.