Main Content

mlreportgen.ppt.DebugMessage Class

Namespace: mlreportgen.ppt

Debugging message

Description

Creates debugging message text originating from the specified source object.

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

Creation

Description

debugMsgObj = DebugMessage(text,sourceObject) creates a debugging message with the specified text, originating from the specified source object.

example

Input Arguments

expand all

The text to display for the message, specified as a character vector or string scalar..

The PPT object from which the message originates, specified as a PPT object.

Properties

expand all

Source PPT object from which the message originates, specified as a PPT object.

Attributes:

GetAccess
public
SetAccess
none
Transient
true
NonCopyable
true

Message text, specified as a character vector or string scalar.

Attributes:

GetAccess
public
SetAccess
public
Transient
true
NonCopyable
true

Data Types: char | string

Tag, 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. Use this value to help identify where an issue occurs during document generation.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Object identifier, 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:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Methods

expand all

Examples

collapse all

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 the presentation.

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

open(pre);

Add content and close 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