VsColors.GetThemedColorRgba Method
Gets and unsigned integer VS_RGBA value from the current theme for the given color key. The returned value has the red channel in the low byte and the alpha channel in the high byte.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetThemedColorRgba ( _
vsUIShell As IVsUIShell5, _
themeResourceKey As ThemeResourceKey _
) As UInteger
public static uint GetThemedColorRgba(
this IVsUIShell5 vsUIShell,
ThemeResourceKey themeResourceKey
)
[ExtensionAttribute]
public:
static unsigned int GetThemedColorRgba(
IVsUIShell5^ vsUIShell,
ThemeResourceKey^ themeResourceKey
)
static member GetThemedColorRgba :
vsUIShell:IVsUIShell5 *
themeResourceKey:ThemeResourceKey -> uint32
public static function GetThemedColorRgba(
vsUIShell : IVsUIShell5,
themeResourceKey : ThemeResourceKey
) : uint
Parameters
vsUIShell
Type: Microsoft.VisualStudio.Shell.Interop.IVsUIShell5The IVsUIShell5 service, used to get the color's value.
themeResourceKey
Type: Microsoft.VisualStudio.Shell.ThemeResourceKeyThe key for which to find the color.
Return Value
Type: UInt32
The current theme's VS_RGBA value of the named color.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IVsUIShell5. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
.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.