Core2D.Style.ArgbColor.Create C# (CSharp) Method

Create() public static method

Creates a new ArgbColor instance.
public static Create ( byte a = 0xFF, byte r = 0x00, byte g = 0x00, byte b = 0x00 ) : ArgbColor
a byte The alpha color channel.
r byte The red color channel.
g byte The green color channel.
b byte The blue color channel.
return ArgbColor
        public static ArgbColor Create(byte a = 0xFF, byte r = 0x00, byte g = 0x00, byte b = 0x00)
        {
            return new ArgbColor()
            {
                A = a,
                R = r,
                G = g,
                B = b
            };
        }