User`s guide

11 Functions – Alphabetical List
11-94
mlreportgen.dom.Table.row
Package: mlreportgen.dom
Access table row
Syntax
tableRowOut = row(tableObj,row)
Description
tableRowOut = row(tableObj,row) returns the table row at the specified row
number.
Examples
Color a Table Row
Color the second row of a table.
import mlreportgen.dom.*;
myReport = Document('myDoc','html');
t = Table(magic(5));
te = row(t,2);
te.Style = {Color('red')};
append(myReport,t);
close(myReport);
rptview('myDoc','html');
“Create and Format Tables”
Input Arguments
tableObj — Table containing entry
mlreportgen.dom.Table object | mlreportgen.dom.FormalTable object