Main Content

mlreportgen.dom.OrderedList class

Package: mlreportgen.dom

Create ordered list

Description

Create an ordered (numbered) list.

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

Creation

Description

orderedListObj = OrderedList() creates an empty ordered list.

example

orderedListObj = OrderedList(items) creates an ordered list of the specified items.

Input Arguments

expand all

Content to include in an ordered list, specified as a:

  • One-dimensional array of doubles

  • One-dimensional array of character vectors

  • One-dimensional categorical array

  • One-dimensional cell array

The cell array can contain a combination of the following:

  • A character vector

  • A number

  • A Boolean value

  • One of the following DOM objects:

    • mlreportgen.dom.Text

    • mlreportgen.dom.Paragraph

    • mlreportgen.dom.ExternalLink

    • mlreportgen.dom.InternalLink

    • mlreportgen.dom.Table

    • mlreportgen.dom.Image

    • mlreportgen.dom.CustomElement

  • Horizontal one-dimensional array (for a sublist)

Properties

expand all

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.

ID for this document element, specified as a character vector or string scalar. The DOM generates a session-unique ID when it creates the document element. You can specify your own ID.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Format objects that specify the format of a document element.

The style specified by Stylename must be defined in the template used to create the document element to which you append this list.

Tag for this document element, specified as a character vector or string scalar.

The DOM 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. Specifying your own tag value can help you to identify where an issue occurred during document generation.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Methods

expand all

Examples

collapse all

import mlreportgen.dom.*;
d = Document('test','html');

ol = OrderedList({Text('a'), 'b', 1,...
    {'c', Paragraph('d')}});
append(d,ol);

close(d);
rptview('test','html');

Version History

Introduced in R2014b

expand all