Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the default foreground and background colors for a marker.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function GetDefaultColors ( _
<OutAttribute> piForeground As COLORINDEX(), _
<OutAttribute> piBackground As COLORINDEX() _
) As Integer
int GetDefaultColors(
COLORINDEX[] piForeground,
COLORINDEX[] piBackground
)
int GetDefaultColors(
[OutAttribute] array<COLORINDEX>^ piForeground,
[OutAttribute] array<COLORINDEX>^ piBackground
)
abstract GetDefaultColors :
piForeground:COLORINDEX[] byref *
piBackground:COLORINDEX[] byref -> int
function GetDefaultColors(
piForeground : COLORINDEX[],
piBackground : COLORINDEX[]
) : int
Parameters
- piForeground
Type: array<Microsoft.VisualStudio.TextManager.Interop.COLORINDEX[]
[out] Pointer to the default foreground color. For a list of piForeground values, see COLORINDEX.
- piBackground
Type: array<Microsoft.VisualStudio.TextManager.Interop.COLORINDEX[]
[out] Pointer to the default background color. For a list of piBackground values, see COLORINDEX.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextMarkerType::GetDefaultColors(
[out] COLORINDEX *piForeground,
[out] COLORINDEX *piBackground
);
.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.