getEntry

Get table cell contents

Syntax

content = getEntry(table, row, column)

Description

content = getEntry(table, row, column) gets the contents of the specified cell.

Input Arguments

table

Instantiation of the ModelAdvisor.Table class

row

An integer specifying the row

column

An integer specifying the column

Output Arguments

content

An element object or object array specifying the content of the table entry

Examples

Get the content of the table cell in the third column, third row:

table1 = ModelAdvisor.Table(4, 4);
.
.
.
content = getEntry(table1, 3, 3);