mlreportgen.ppt.ErrorMessage Class
Namespace: mlreportgen.ppt
Error message
Description
Specifies error message text originating from a specified source object.
The mlreportgen.ppt.ErrorMessage
class is a handle
class.
Creation
Description
creates an error message with the specified text originating from the
specified source object.errorMsgObj
= ErrorMessage(text
,sourceObject
)
Input Arguments
text
— Message text
character vector | string scalar
The text to display for the message, specified as a character vector or string scalar..
sourceObject
— PPT object from which message originates
a PPT object
The PPT object from which the message originates, specified as a PPT object.
Properties
Source
— Source PPT object from which message originates
a PPT object
Source PPT object from which the message originates, specified as a PPT object.
Text
— Text of message
character vector | string scalar
Message text, specified as a character vector or string scalar.
Attributes:
Transient | true |
NonCopyable | true |
Data Types: char
| string
Tag
— Tag for mlreportgen.ppt.ErrorMessage
object
character vector | string scalar
Tag for the mlreportgen.ppt.ErrorMessage
object, specified as a character vector or
string scalar. The PPT API 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. Specify your own tag value to help
you identify where to look when an issue occurs during document generation.
Attributes:
NonCopyable | true |
Data Types: char
| string
Id
— Object identifier for mlreportgen.ppt.ErrorMessage
object
character vector | string scalar
Object identifier for the mlreportgen.ppt.ErrorMessage
object, specified as a
character vector or string scalar. The PPT API generates a session-unique identifier
when it creates the document element object. You can specify your own value for
Id
.
Attributes:
NonCopyable | true |
Data Types: char
| string
Methods
Public Methods
Use ErrorMessage
methods similar to how you use
ProgressMessage
methods.
Method | Purpose |
---|---|
Format message as HTML. | |
Format message as text. | |
Determine whether message passes filter. |
Examples
Create an Error Message
Create the presentation.
import mlreportgen.ppt.*; pre = Presentation('myPresentation.pptx');
Create the listener and add it to the message dispatcher.
dispatcher = MessageDispatcher.getTheDispatcher; dispatcher.Filter.ErrorMessagesPass = true; dispatcher.Filter.ProgressMessagesPass = false; l = addlistener(dispatcher,'Message', ... @(src, evtdata) disp(evtdata.Message.formatAsText));
Add an error to the program.
titleText = Text('This is a Title'); titleText.Style = {Bold}; replace(presentation,'Title',titleText);
Create the message and dispatch it. Then open the presentation.
msg = ErrorMessage('invalid slide',pre);
dispatch(dispatcher,msg);
open(pre);
Delete the listener to avoid duplicate reporting of message objects during a MATLAB® session.
delete(l);
Version History
Introduced in R2015b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)