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

Chunk() public method

Constructs a chunk of text with a certain content and a certain Font.
public Chunk ( string content, Font font ) : System
content string the content
font Font the font
return System
        public Chunk(string content, Font font)
        {
            this.content = new StringBuilder(content);
            this.font = font;
        }

Same methods

Chunk::Chunk ( ) : System
Chunk::Chunk ( Chunk ck ) : System
Chunk::Chunk ( IDrawInterface separator ) : System
Chunk::Chunk ( IDrawInterface separator, bool vertical ) : System
Chunk::Chunk ( IDrawInterface separator, float tabPosition ) : System
Chunk::Chunk ( IDrawInterface separator, float tabPosition, bool newline ) : System
Chunk::Chunk ( Image image, float offsetX, float offsetY ) : System
Chunk::Chunk ( Image image, float offsetX, float offsetY, bool changeLeading ) : System
Chunk::Chunk ( char c ) : System
Chunk::Chunk ( char c, Font font ) : System
Chunk::Chunk ( string content ) : System