MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guía de usuario Pagina 433

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 986
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 432
mlreportgen.dom.FormalTable.appendFooterRow
11-53
mlreportgen.dom.FormalTable.appendFooterRow
Package: mlreportgen.dom
Append row to table footer
Syntax
rowObjOut = appendFooterRow(tableObj,rowObj)
Description
rowObjOut = appendFooterRow(tableObj,rowObj) appends a row of table entries
to the footer of a table.
Examples
Append a Table Footer
Create, format, and append a formal table.
import mlreportgen.dom.*;
myReport = Document('myDoc','html');
table = FormalTable({'row1 - col1' 'row1 - col2 ';...
'row2 - col1' 'row2 - col2'});
table.Style = {Border('double'),ColSep('solid'),RowSep('solid')};
append(myReport,table);
Create a row (and its entries) for the footer. Use bold text for the text in the row.
rowForFooter = TableRow();
rowForFooter.Style = {Bold(true)};
col1Title = TableEntry('Column 1 footer');
col2Title = TableEntry('Column 2 footer');
append(rowForFooter,col1Title);
append(rowForFooter,col2Title);
Append the footer row and display the report.
Vista de pagina 432
1 2 ... 428 429 430 431 432 433 434 435 436 437 438 ... 985 986

Comentarios a estos manuales

Sin comentarios