Get table cell contents
content = getEntry(table, row, column)
content = getEntry(table, row, column)
gets
the contents of the specified cell.
table | Instantiation of the |
row | An integer specifying the row |
column | An integer specifying the column |
content | An element object or object array specifying the content of the table entry |
Get the content of the table cell in the third column, third row:
table1 = ModelAdvisor.Table(4, 4); . . . content = getEntry(table1, 3, 3);