mlreportgen.dom.HorizontalRule Class
Namespace: mlreportgen.dom
Horizontal line between report content
Description
Horizontal line to visually separate report content in a report. You can
append a HorizontalRule
object to these objects:
mlreportgen.dom.Document
mlreportgen.dom.DocumentPart
mlreportgen.dom.TableEntry
mlreportgen.dom.Group
mlreportgen.dom.Container
The mlreportgen.dom.HorizontalRule
class is a handle
class.
Creation
Description
creates an unspecified horizontal line.horizontalRuleObj
= HorizontalRule
Properties
Border
— Line style for horizontal rule
character vector | string scalar
Line style for horizontal rule, specified as one of these values.
Border Value | Description | Supported Output Types |
---|---|---|
| Dashed line | HTML, PDF, Word |
| Line with alternating diagonal dashes and dot | Word |
| Dashed line with a small gap between dashes | Word |
| Dotted line | HTML, PDF, Word |
| Line with alternating dots and dashes | Word |
| Line with alternating double dots and a dash | Word |
| Double line | HTML, PDF, Word |
| Double wavy line | Word |
| 3-D effect grooved line | HTML, PDF |
| No line The | HTML, PDF |
| 3-D effect line | HTML, PDF, Word |
| No line The | HTML, PDF, Word |
| 3-D effect line | HTML, PDF, Word |
| 3-D effect ridged line | HTML, PDF |
| Single line | Word |
| Single line | HTML, PDF |
| Thick line | Word |
| Dashed line with alternating thick and thin dashes with a large gap | Word |
| Dashed line with alternating thick and thin dashes with a medium gap | Word |
| Dashed line with alternating thick and thin dashes with a small gap | Word |
| Dashed line with alternating thin and thick dashes with a medium gap | Word |
| Dashed line with alternating thin and thick dashes, with a medium gap | Word |
| Dashed line with alternating thin and thick dashes with a small gap | Word |
| Dashed line with alternating thin and thick dashes with a large gap | Word |
| Dashed line with alternating thin and thick dashes with a medium gap | Word |
| Dashed line with alternating thin and thick dashes with a small gap | Word |
| Embossed effect line | Word |
| Engraved effect line | Word |
| Triple line | Word |
| Wavy line | Word |
Attributes:
NonCopyable | true |
Data Types: char
| string
BorderColor
— Color of line
character vector
Color of the line, specified as a character vector or string scalar. You can specify:
The name of a color. The name must be a CSS color name. See https://www.w3.org/wiki/CSS/Properties/color/keywords.
A hexadecimal RGB (truecolor) value as
#RRGGBB
. For example,#0000ff
is a shade of blue.
BorderWidth
— Width of line (in HTML report)
character vector
Width of line (in an HTML report), specified in the
format valueUnits
where
Units
is an abbreviation for
the units. Valid abbreviations are:
"px"
— pixels"cm"
— centimeters"in"
— inches"mm"
— millimeters"pc"
— picas"pt"
— points
BackgroundColor
— Background color of line (in HTML report)
character vector
Background color of the line, specified as a character vector or string scalar. You can specify:
The name of a color. The name must be a CSS color name. See https://www.w3.org/wiki/CSS/Properties/color/keywords.
A hexadecimal RGB (truecolor) value as
#RRGGBB
. For example,#0000ff
is a shade of blue.
Note
This property applies only to HTML reports.
StyleName
— Name of stylesheet-defined style
[]
(default) | character vector | string scalar
Style name, specified as a character vector or 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
Style
— Format specification
{}
(default) | array of DOM format objects
Format specification for this document element object, specified as an array of DOM
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 document element object are ignored.
Attributes:
NonCopyable | true |
Tag
— Tag for mlreportgen.dom.HorizontalRule
object
character vector | string scalar
Tag for the mlreportgen.dom.HorizontalRule
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
Id
— Object identifier for mlreportgen.dom.HorizontalRule
object
character vector | string scalar
Object identifier for the mlreportgen.dom.HorizontalRule
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
Public Methods
Method | Purpose |
---|---|
Use
| Copy horizontal line. |
Examples
Add a Horizontal Rule
import mlreportgen.dom.*; doctype = 'html'; d = Document('horizontalRule',doctype); p1 = Paragraph('Top content'); append(d,p1); hr = HorizontalRule(); hr.Border = 'dotted'; hr.BorderColor = 'blue'; append(d,hr); p2 = Paragraph('Bottom content'); append(d,p2); close(d); rptview(d.OutputPath);
Version History
Introduced in R2015bR2021a: Background Color Not Supported for PDF Reports
Starting in R2021a, you cannot specify the background color of a horizontal rule in a PDF report.
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)