Sparkline for UWP | ComponentOne
C1.UWP Assembly / C1.Xaml Namespace / ColorEx Class / GetARGB Method
The color.
The alpha channel.
The red component.
The green component.
The blue component.

In This Topic
    GetARGB Method
    In This Topic
    Gets the ARGB components of a color.
    Syntax
    'Declaration
     
    
    Public Shared Sub GetARGB( _
       ByVal color As Brush, _
       ByRef a As Byte, _
       ByRef r As Byte, _
       ByRef g As Byte, _
       ByRef b As Byte _
    ) 
    public static void GetARGB( 
       Brush color,
       out byte a,
       out byte r,
       out byte g,
       out byte b
    )

    Parameters

    color
    The color.
    a
    The alpha channel.
    r
    The red component.
    g
    The green component.
    b
    The blue component.
    See Also