Hello Mark,
Thanks for using our products.,
Please take a look over the following code snippet to accomplish your requirement. I have also attached the resultant PDF that I have generated using Aspose.Pdf for .NET 4.5.0
[C#]
Pdf pdf1 = new Pdf();
Aspose.Pdf.Section sec1 = pdf1.Sections.Add();
Aspose.Pdf.Table table1 = new Aspose.Pdf.Table();
sec1.Paragraphs.Add(table1);
table1.ColumnWidths = "70 2cm";
Aspose.Pdf.Row row1 = table1.Rows.Add();
Aspose.Pdf.TextInfo ItalicTextInfo = new Aspose.Pdf.TextInfo();
ItalicTextInfo.IsTrueTypeFontItalic= true;
Aspose.Pdf.Cell cell1Row2 = row1.Cells.Add("Italic Text",ItalicTextInfo);
cell1Row2.Border = new BorderInfo((int)BorderSide.All,0.5F);
Aspose.Pdf.TextInfo BoldTextInfo = new Aspose.Pdf.TextInfo();
BoldTextInfo.IsTrueTypeFontBold=true;
Aspose.Pdf.Cell cell2Row2 = row1.Cells.Add("Bold Text",BoldTextInfo);
cell2Row2.Border = new BorderInfo((int)BorderSide.All,0.5F,new Aspose.Pdf.Color("Red"));
pdf1.Save(@"d:/pdftest/TextFormatting_InsideTableCell.pdf");
In case it does not satisfy your requirement or you have any further query, please feel free to contact.