iTextSharp.text.Font.Font C# (CSharp) Method

Font() public method

Constructs a Font.
public Font ( BaseFont bf, float size, int style, Color color ) : System
bf iTextSharp.text.pdf.BaseFont the external font
size float the size of this font
style int the style of this font
color Color the Color of this font.
return System
        public Font(BaseFont bf, float size, int style, Color color) {
            this.baseFont = bf;
            this.size = size;
            this.style = style;
            this.color = color;
        }
    

Same methods

Font::Font ( ) : System
Font::Font ( BaseFont bf ) : System
Font::Font ( BaseFont bf, float size ) : System
Font::Font ( BaseFont bf, float size, int style ) : System
Font::Font ( Font other ) : System
Font::Font ( int family ) : System
Font::Font ( int family, float size ) : System
Font::Font ( int family, float size, int style ) : System
Font::Font ( int family, float size, int style, Color color ) : System