Proprietà Reference.ExtenderCATID

Ottiene l'ID della categoria (CATID) dell'oggetto Extender.

Spazio dei nomi:  VSLangProj
Assembly:  VSLangProj (in VSLangProj.dll)

Sintassi

'Dichiarazione
ReadOnly Property ExtenderCATID As String
    Get
string ExtenderCATID { get; }
property String^ ExtenderCATID {
    String^ get ();
}
abstract ExtenderCATID : string
function get ExtenderCATID () : String

Valore proprietà

Tipo: System.String
Restituisce il GUID che rappresenta il CATID dell'oggetto come una stringa.

Note

Nota

Il CATID è in genere specifico dell'implementazione di un oggetto. Project.ExtenderCATID, ad esempio, è diverso per un oggetto di un progetto Visual Basic rispetto a un oggetto di un progetto Visual C++.

Esempi

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Reference Interfaccia

Spazio dei nomi VSLangProj

Altre risorse

Implementazione e utilizzo delle estensioni di automazione