ComponentOne Basic Library for UWP
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 Windows.UI.Xaml.Media.Brush, _
       ByRef a As System.Byte, _
       ByRef r As System.Byte, _
       ByRef g As System.Byte, _
       ByRef b As System.Byte _
    ) 
    public static void GetARGB( 
       Windows.UI.Xaml.Media.Brush color,
       out System.byte a,
       out System.byte r,
       out System.byte g,
       out System.byte b
    )

    Parameters

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