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

Chunk() public method

public Chunk ( char c, Font font ) : System
c char
font Font
return System
        public Chunk(char c, Font font)
        {
            this.content = new StringBuilder();
            this.content.Append(c);
            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 ( string content ) : System
Chunk::Chunk ( string content, Font font ) : System