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

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 986
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 703
12 Classes – Alphabetical List
12-210
Methods
Method Purpose
dispatch Dispatch a document generation status
message.
getTheDispatcher Get the message dispatcher.
Examples
Add and Dispatch a Progress Message
This example shows how to add a progress message to display when generating a report.
Add a dispatcher and listener to the report.
import mlreportgen.dom.*;
doctype = 'html';
d = Document('test',doctype);
d.Tag = 'My report';
dispatcher = MessageDispatcher.getTheDispatcher;
l = addlistener(dispatcher,'Message', ...
@(src,evtdata) disp(evtdata.Message.formatAsText));
open(d);
dispatch(dispatcher,ProgressMessage('starting chapter',d));
p = Paragraph('Chapter ');
p.Tag = 'chapter title';
append(d,p);
close(d);
rptview('test',doctype);
delete (l);
Check the progress messages in the MATLAB Command Window. The starting
chapter message appears, in addition to the predefined DOM progress messages.
“Display Report Generation Messages”
Przeglądanie stron 703
1 2 ... 699 700 701 702 703 704 705 706 707 708 709 ... 985 986

Komentarze do niniejszej Instrukcji

Brak uwag