mlreportgen.dom.ProgressMessage class
Package: mlreportgen.dom
Progress message
Description
Create a progress message with the specified text originating from the specified source object.
The mlreportgen.dom.ProgressMessage
class is a handle
class.
Creation
Description
Input Arguments
text
— Message text
character vector
The text to display for the message.
source
— DOM object to from which message originates
a DOM object
The DOM object from which the message originates.
Properties
Id
— ID for this document element
character vector | string scalar
ID for this document element, specified as a character vector or string scalar. The DOM generates a session-unique ID when it creates the document element. You can specify your own ID.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: char
| string
Source
— Source DOM object message originates from
a DOM object
Source DOM object from which the message originates.
Tag
— Tag for this document element
character vector | string scalar
Tag for this document element, specified as a character vector or string scalar.
The DOM generates a session-unique tag as part of the creation of this object. The
generated tag has the form CLASS:ID, where CLASS is the object class and ID is the value
of the Id
property of the object. Specifying your own tag value can
help you to identify where an issue occurred during document generation.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: char
| string
Text
— Text of message
character vector
Message text, specified as a character vector.
Methods
Public Methods
Method | Purpose |
---|---|
Wrap message in HTML tags. | |
Format message as text. | |
Determine if message passes filter. |
Examples
Create a Progress Message
Create the report document.
import mlreportgen.dom.*; d = Document('test','html');
Create a message dispatcher.
dispatcher = MessageDispatcher.getTheDispatcher; l = addlistener(dispatcher,'Message', ... @(src, evtdata) disp(evtdata.Message.formatAsText));
Dispatch the message.
open(d);
dom.Document:187 opening dom.Document:187 parsing template "/mathworks/devel/bat/Bdoc23b/build/matlab/toolbox/shared/mlreportgen/dom/resources/templates/html/default.htmtx" dom.Document:187 appended dom.TemplateText:203 dom.Document:187 appended dom.TemplateText:206 dom.Document:187 appended dom.TemplateText:209 dom.Document:187 moved to hole "#start#"
dispatch(dispatcher,ProgressMessage('starting chapter',d));
dom.Document:187 starting chapter
Add report content.
p = Paragraph('Chapter '); p.Tag = 'chapter title'; p.Style = { CounterInc('chapter'),... CounterReset('table'),WhiteSpace('pre') }; append(p, AutoNumber('chapter')); append(d,p);
dom.Document:187 appended chapter title
Run report and delete the listener.
close(d);
dom.Document:187 appended dom.TemplateText:224 dom.Document:187 moved to hole "#end#" dom.Document:187 closed
rptview('test','html');
Delete the listener to avoid duplicate reporting of message objects during a MATLAB® session.
delete(l);
Version History
Introduced in R2014b
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)