MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guia do Utilizador Página 474

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 986
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 473
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
Vista de página 473
1 2 ... 469 470 471 472 473 474 475 476 477 478 479 ... 985 986

Comentários a estes Manuais

Sem comentários