PixelFarm.Drawing.Color.FromArgb C# (CSharp) 메소드

FromArgb() 공개 정적인 메소드

public static FromArgb ( float a, float r, float g, float b ) : Color
a float
r float
g float
b float
리턴 Color
        public static Color FromArgb(float a, float r, float g, float b)
        {
            return new Color((byte)a, (byte)r, (byte)g, (byte)b);
        }
        public override bool Equals(object obj)

Same methods

Color::FromArgb ( int a, Color c ) : Color
Color::FromArgb ( int r, int g, int b ) : Color
Color::FromArgb ( int a, int r, int g, int b ) : Color