iTextSharp.text.Color.Color C# (CSharp) Метод

Color() публичный Метод

Constuctor for Color object.
public Color ( int red, int green, int blue ) : System
red int The red component value for the new Color structure. Valid values are 0 through 255.
green int The green component value for the new Color structure. Valid values are 0 through 255.
blue int The blue component value for the new Color structure. Valid values are 0 through 255.
Результат System
        public Color(int red, int green, int blue) {
            color = System.Drawing.Color.FromArgb(red, green, blue);
        }

Same methods

Color::Color ( System color ) : System
Color::Color ( float red, float green, float blue ) : System
Color::Color ( float red, float green, float blue, float alpha ) : System
Color::Color ( int argb ) : System
Color::Color ( int red, int green, int blue, int alpha ) : System