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

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

Constuctor for Color object.
public BaseColor ( int red, int green, int blue, int alpha ) : 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.
alpha int The transparency component value for the new Color structure. Valid values are 0 through 255.
Результат System
        public BaseColor(int red, int green, int blue, int alpha)
        {
            color = System.Drawing.Color.FromArgb(alpha, red, green, blue);
        }

Same methods

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