VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Primitives Namespace / VintasoftColor Structure / FromArgb Methods / FromArgb(Byte,Byte,Byte,Byte) Method
Syntax Requirements SeeAlso
In This Topic
    FromArgb(Byte,Byte,Byte,Byte) Method (VintasoftColor)
    In This Topic
    Creates a color from its component (alpha, red, green, and blue) values.
    Syntax
    'Declaration
    
    Public Overloads Shared Function FromArgb( _
    ByVal alpha
    The alpha component.
    As Byte, _
    ByVal red
    The red component.
    As Byte, _
    ByVal green
    The green component.
    As Byte, _
    ByVal blue
    The blue component.
    As Byte _
    ) As VintasoftColor
    public static VintasoftColor FromArgb(
    byte alpha,
    byte red,
    byte green,
    byte blue
    )
    public: static VintasoftColor FromArgb(
    byte alpha,
    byte red,
    byte green,
    byte blue
    )
    public:
    static VintasoftColor FromArgb(
    byte alpha,
    byte red,
    byte green,
    byte blue
    )

    Parameters

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

    Return Value

    A color with specified components.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7, .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5

    See Also