Spliting text in the table cell

Hi,

I want to add two lines in the table cell.

1st column 2nt column
Role/Title Start Date
Developer 2/2/2004


I am using following, can you please explain how I can do this?. In html I use
to split the line.

e.g

row1.Cells.Add("#1")
row1.Cells.Add("Role/Title
" & “Developer”)
row1.Cells.Add(“Start Date
” & “2/2/2004”)

Dear sfgroups,

Thank you for considering aspose.

In Aspose.Pdf you can use “#$NL” to split a line and “#$NP” to start a new page.

Wow, It worked thanks

-SR