Main Content

mlreportgen.dom.Bold Class

Namespace: mlreportgen.dom

Bold for text object

Description

Specifies whether to use bold for a text object

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

Creation

Description

boldObj = Bold creates a bold object that specifies to use bold for a text object.

example

boldObj = Bold(value) creates a bold object that specifies to use bold for a text object if value is true. Otherwise, creates a bold object that specifies to use regular weight text.

Input Arguments

expand all

A setting of false (or 0) uses regular weight text. A setting of true (or 1) renders text in bold.

Data Types: logical

Properties

expand all

The possible values are:

  • 0— uses regular weight text

  • 1— renders text in bold

Data Types: logical

Tag for mlreportgen.dom.Bold 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.Bold 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

Examples

collapse all

import mlreportgen.dom.*;
doctype = 'html';
d = Document('test',doctype);
p = Paragraph('Bold text  ');
p.Style = {Bold};
append(d,p);

t = Text('Regular weight text');
t.Style = {Bold(false)};
append(p,t);
close(d);
rptview('test',doctype);

Version History

Introduced in R2014b