User`s guide

11 Functions – Alphabetical List
11-92
mlreportgen.dom.Table.entry
Package: mlreportgen.dom
Access table entry
Syntax
tableEntryOut = entry(tableObj,row,column)
Description
tableEntryOut = entry(tableObj,row,column) returns the table entry for the
specified column of the specified row.
Examples
Color a table entry
Color the table entry in row 3, column 4.
import mlreportgen.dom.*;
myReport = Document('myDoc','html');
t = Table(magic(5));
t.entry(3,4);
t.entry(3,4).Children(1).Color = 'red';
append(myReport,t);
close(myReport);
rptview('myDoc','html');
“Create and Format Tables”
Input Arguments
tableObj — Table containing the entry
mlreportgen.dom.Table object | mlreportgen.dom.FormalTable object