Hi,
Can you please let me know how to find out if a pdf.cell contains a particular string text?
I would like to loop thru a PDF table and see if a row should display the data in bold. This can be determined if the first cell in that row contains the string "Total". How do I compare the data in a cell if it contains the string "Total"?
Here is my pseudo code:
int idx = 0;
foreach (Aspose.Pdf.Row aRow in tab1.Rows)
{
if (aRow.Rows[idx][cell0].ToString() contains "Total")
{
//display make the cell data bold
}
}