Main Content

mlreportgen.dom.LineBreak Class

Namespace: mlreportgen.dom

Line break in a Word or PDF report

Description

Use an object of mlreportgen.dom.LineBreak to insert a line break anywhere in a Microsoft® Word or PDF report.

The mlreportgen.dom.LineBreak class is a handle class.

Class Attributes

HandleCompatible
true
ConstructOnLoad
true

For information on class attributes, see Class Attributes.

Creation

Description

example

lBreak = mlreportgen.dom.LineBreak creates a line break object.

Properties

expand all

Style name, specified as a character vector or a string scalar. The style name is the name of a style specified in the style sheet of the document or document part to which this element is appended. The specified style defines the appearance of this element in the output document unless overridden by the formats specified by the Style property of this element. To learn more about using style sheets, see Use Style Sheet Styles.

Note

Microsoft Word output ignores the style name.

Attributes:

NonCopyable
true

Data Types: char | string

Format specification for this document element object, specified as an array of format objects. The formats specified by this property override corresponding formats specified by the StyleName property of this element. Formats that do not apply to this element are ignored.

Attributes:

NonCopyable
true

Data Types: cell

Custom attributes of this document element, specified as an array of mlreportgen.dom.CustomAttribute objects. The custom attributes must be supported by the output format of the document element to which this object is appended.

Attributes:

NonCopyable
true

Parent of mlreportgen.dom.LineBreak object, specified as a document element object. A document element must have only one parent.

Attributes:

SetAccess
private
NonCopyable
true

Children of mlreportgen.dom.LineBreak object, specified as an array of document element objects. This property contains the document element objects appended using the append method.

Attributes:

SetAccess
private
NonCopyable
true

Tag for mlreportgen.dom.LineBreak object, specified as a character vector or string scalar. The DOM 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

Object identifier for mlreportgen.dom.LineBreak object, specified as a character vector or string scalar. The DOM 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

expand all

Examples

collapse all

This example shows how to insert a line break in a PDF report by using a LineBreak object.

Import the DOM API namespace so you do not have to use long, fully qualified names.

import mlreportgen.dom.*;

Create a Document object and open it.

d = Document("LineBreakReport","pdf");
open(d);

Create the first page and add a heading to the object. Create a Paragraph object p.

h = Heading1("Learning to Use Line Breaks");
append(d,h);
p = Paragraph("Use a LineBreak object");

Specify preserve for the WhiteSpace method for the Paragraph object to add a line break to it. Append the LineBreak handle class to the paragraph.

p.WhiteSpace = 'preserve';
append(p,LineBreak);

Insert the next line by appending it to the existing Paragraph object. Append the paragraph to the Document.

append(p,"to force a new line in a paragraph");
append(d,p);

Close and view the document.

close(d);
rptview(d);

Version History

Introduced in R2016b