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

Color() 공개 메소드

public Color ( byte r, byte g, byte b ) : System
r byte
g byte
b byte
리턴 System
        public Color(byte r, byte g, byte b)
        {
            this.r = r;
            this.g = g;
            this.b = b;
            this.a = 255;
        }
        public byte R

Same methods

Color::Color ( byte a, byte r, byte g, byte b ) : System