To get Text of Cell, i using function GetText of PdfTable ,
But Can I get Point of a Cell In Table?
foreach (PdfTable table in tableLists)
{
//Get row number and column number of a certain table
int iTotalRow = table.GetRowCount();
int iTotalCol = table.GetColumnCount();
//Loop though the row and colunm
for (int iRow = 0; iRow < iTotalRow; iRow++)
{
for (int iCol = 0; iCol < iTotalCol; iCol++)
{
//Get text from the specific cell
string text = table.GetText(iRow, iCol);
// Get Point of Cell
}
}
}