Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Core Namespace / SchemeColor Structure / CreateArgbColor Method / CreateArgbColor(Int32,Int32,Int32,Byte) Method
The red color component.
The green color component.
The blue color component.
The alpha color component.


In This Topic
    CreateArgbColor(Int32,Int32,Int32,Byte) Method
    In This Topic
    Creates the ARGB color.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function CreateArgbColor( _
       ByVal red As Integer, _
       ByVal green As Integer, _
       ByVal blue As Integer, _
       Optional ByVal alpha As Byte _
    ) As SchemeColor
    'Usage
     
    
    Dim red As Integer
    Dim green As Integer
    Dim blue As Integer
    Dim alpha As Byte
    Dim value As SchemeColor
     
    value = SchemeColor.CreateArgbColor(red, green, blue, alpha)
    public static SchemeColor CreateArgbColor( 
       int red,
       int green,
       int blue,
       byte alpha
    )

    Parameters

    red
    The red color component.
    green
    The green color component.
    blue
    The blue color component.
    alpha
    The alpha color component.

    Return Value

    A SchemeColor value represents the color
    See Also