Gets the ARGB components of a color.
Syntax
'Declaration
Public Shared Sub GetARGB( _
ByVal As Brush, _
ByRef As Byte, _
ByRef As Byte, _
ByRef As Byte, _
ByRef As Byte _
)
'Usage
Dim color As Brush
Dim a As Byte
Dim r As Byte
Dim g As Byte
Dim b As Byte
ColorEx.GetARGB(color, a, r, g, b)
public static void GetARGB(
Brush ,
out byte ,
out byte ,
out byte ,
out byte
)
public:
static void GetARGB(
Brush^ ,
[Out] byte ,
[Out] byte ,
[Out] byte ,
[Out] byte
)
Parameters
- color
- The color.
- a
- The alpha channel.
- r
- The red component.
- g
- The green component.
- b
- The blue component.
See Also