I am trying to add two phrases to one cell, how would I go about this?
Example:
 
Phrase phrase1 = new Phrase("Retro");
Phrase phrase2 = new Phrase("active");
 
Table ret = new Table(1,1);
Cell cell = new Cell(phrase1 + phrase2); ------->Doesn't Work but you get the idea of what i am trying to do
 
The output I desire is the word "Retroactive" in a one row one cell column. Thanks.
 
- Pat Moynahan 

Reply via email to