Metodo IVsTextManager.GetMarkerTypeInterface
Esegue il mapping di un tipo ID numerico del marcatore a un'interfaccia che può essere utilizzata da sondare per informazioni specifiche.
Spazio dei nomi: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Sintassi
'Dichiarazione
Function GetMarkerTypeInterface ( _
iMarkerTypeID As Integer, _
<OutAttribute> ByRef ppMarkerType As IVsTextMarkerType _
) As Integer
int GetMarkerTypeInterface(
int iMarkerTypeID,
out IVsTextMarkerType ppMarkerType
)
int GetMarkerTypeInterface(
[InAttribute] int iMarkerTypeID,
[OutAttribute] IVsTextMarkerType^% ppMarkerType
)
abstract GetMarkerTypeInterface :
iMarkerTypeID:int *
ppMarkerType:IVsTextMarkerType byref -> int
function GetMarkerTypeInterface(
iMarkerTypeID : int,
ppMarkerType : IVsTextMarkerType
) : int
Parametri
iMarkerTypeID
Tipo: Int32[in] Il tipo ID del marcatore, ad esempio da GetType.
ppMarkerType
Tipo: Microsoft.VisualStudio.TextManager.Interop.IVsTextMarkerType%[out] Puntatore a IVsTextMarkerType interfaccia, cui viene fatto riferimento con AddReferernce.
Valore restituito
Tipo: Int32
Se il metodo ha esito positivo, restituisce S_OK.Se non riesce, restituisce un codice di errore.
Note
Firma COM
da textmgr.idl:
HRESULT IVsTextManager::GetMarkerTypeInterface(
[in] long iMarkerTypeID,
[out] IVsTextMarkerType **ppMarkerType
);
Utilizzare questa interfaccia per creare l'icona di un marcatore in diventi proprietaria l'interfaccia utente.
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.