I need to know if its possible to combine two Chunk
from iTextSharp
Phrase phrase = new Phrase();
var text1 = new Chunk("hello");
var text2 = new Chunk("world");
phrase.add();
I want to combine text1
and text2
, and then add them to a phrase
.