Main Content

mlreportgen.dom.BackgroundColor class

Package: mlreportgen.dom

Background color of document element

Description

Specifies the background color of a document element

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

Creation

Description

backgroundColorObj = BackgroundColor() creates a white background.

example

backgroundColorObj = BackgroundColor(colorName) creates a background color object based on the specified CSS color name.

backgroundColorObj = BackgroundColor(rgbValue) creates a background color object using the hexadecimal RGB color value.

Input Arguments

expand all

The name of a color, specified as a character vector. The name must be a CSS color name. See https://www.w3.org/wiki/CSS/Properties/color/keywords.

A character vector using the following RGB format: #RRGGBB. Use # as the first character and two-digit hexadecimal numbers each for the red, green, and blue values. For example, '#0000ff' specifies blue.

Properties

expand all

Hexadecimal number representing an RGB color value. For example, '#8b008b' specifies dark magenta. You can use either uppercase or lowercase letters as part of a hexadecimal value.

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

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

Either a CSS color name or a hexadecimal RGB value, specified as a character vector.

Examples

collapse all

Create a deep sky blue background color object and apply it to a paragraph. Instead of specifying the CSS color name DeepSkyBlue, you can use the hexadecimal value #00bfff.

import mlreportgen.dom.*;
     doctype = 'html';
     d = Document('test',doctype);
     blue = 'DeepSkyBlue';
     % blue = '#00BFFF';
     colorfulStyle = {Bold,Color(blue),BackgroundColor('Yellow')};
     p = Paragraph('deep sky blue paragraph with yellow background');
     p.Style = colorfulStyle;
     append(d,p);
     close(d);
     rptview('test',doctype);

Version History

Introduced in R2014b