Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets the Extender category ID (CATID) for the object.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property ExtenderCATID As String
string ExtenderCATID { get; }
property String^ ExtenderCATID {
String^ get ();
}
abstract ExtenderCATID : string with get
function get ExtenderCATID () : String
Property Value
Type: System.String
A string GUID representing the CATID.
Remarks
The CATID is typically specific to an implementation of an object.
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.