IVsTextMarkerColorSet.GetMarkerColors, méthode
Détermine le jeu de couleurs associé avec un type de marqueur particulier.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function GetMarkerColors ( _
iMarkerType As Integer, _
<OutAttribute> ByRef pclrFore As UInteger, _
<OutAttribute> ByRef pclrBack As UInteger _
) As Integer
int GetMarkerColors(
int iMarkerType,
out uint pclrFore,
out uint pclrBack
)
int GetMarkerColors(
[InAttribute] int iMarkerType,
[OutAttribute] unsigned int% pclrFore,
[OutAttribute] unsigned int% pclrBack
)
abstract GetMarkerColors :
iMarkerType:int *
pclrFore:uint32 byref *
pclrBack:uint32 byref -> int
function GetMarkerColors(
iMarkerType : int,
pclrFore : uint,
pclrBack : uint
) : int
Paramètres
iMarkerType
Type : Int32[in] entier contenant le type de marqueur.
pclrFore
Type : UInt32%[] couleur de premier plan du marqueur de texte. Pour une liste de valeurs d'pclrFore, consultez l'COLORREF.
pclrBack
Type : UInt32%[] couleur d'arrière-plan du marqueur de texte. Pour une liste de valeurs d'pclrBack, consultez l'COLORREF.
Valeur de retour
Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.
Notes
Signature de COM
De textmgr.idl :
HRESULT IVsTextMarkerColorSet::GetMarkerColors(
[in] long iMarkerType,
[out] COLORREF *pclrFore,
[out] COLORREF *pclrBack
);
Les informations d'IVsTextMarkerColorSet.GetMarkerColors sont utilisées dans IVsPackageDefinedTextMarkerType : : DrawGlyphWithColors pour permettre à un type de marqueur pour déterminer si un autre type de marqueur utilise le même jeu de couleurs.
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.