Main Content

mlreportgen.ppt.MessageDispatcher Class

Namespace: mlreportgen.ppt

PPT message dispatcher

Description

Dispatcher for presentation generation status messages.

Note

When you create a message dispatcher, the PPT API keeps the dispatcher until the end of the current MATLAB® session. Delete message event listeners to avoid duplicate reporting of message objects during a MATLAB session.

The mlreportgen.ppt.MessageDispatcher class is a handle class.

Properties

expand all

This read-only property specifies a filter that determines the types of messages the dispatcher dispatches. You can control the types of messages that are dispatched by setting the properties of the filter.

ID for this PPT API object, specified as a character vector or string scalar. A session-unique ID is generated as part of the object creation. You can specify an ID to replace the generated ID.

Attributes:

NonCopyable
true

Data Types: char | string

Tag for this PPT API object, specified as a character vector or string scalar. A session-unique tag is generated 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 issues occur during presentation generation.

Attributes:

NonCopyable
true

Data Types: char | string

Methods

expand all

Examples

collapse all

This example shows how to add a progress message to display when generating a presentation.

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));

Create the message and dispatch it before opening.

msg = ErrorMessage('Invalid slide',pre);
dispatch(dispatcher, msg);

open(pre);

Create an error in the program and dispatch the message before opening the presentation.

titleText = Text('This is a Title');
titleText.Style = {Bold};
replace(pre,'Title',titleText);

close(pre);

Delete the listener to avoid duplicate reporting of message objects during a MATLAB session.

delete(l);

Version History

Introduced in R2015b