ProjectItem.ExtenderCATID, propriété
Obtient l'identificateur de catégorie (CATID) d'extendeur de l'objet.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property ExtenderCATID As String
string ExtenderCATID { get; }
property String^ ExtenderCATID {
String^ get ();
}
abstract ExtenderCATID : string with get
function get ExtenderCATID () : String
Valeur de propriété
Type : String
Chaîne représentant le CATID de l'objet sous la forme d'un GUID.
Notes
Le CATID est généralement spécifique à une implémentation d'un objet.
Exemples
Sub ExtenderCATIDExample()
Dim objDoc As Document
objDoc = DTE.ActiveDocument
If Not (objDoc Is Nothing) Then
MsgBox(objDoc.ExtenderCATID)
End If
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.