MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Podręcznik Użytkownika Strona 472

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 986
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 471
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
Przeglądanie stron 471
1 2 ... 467 468 469 470 471 472 473 474 475 476 477 ... 985 986

Komentarze do niniejszej Instrukcji

Brak uwag