mlreportgen.dom.Color Class
R2026bNamespace: mlreportgen.dom
Color of document element
Description
Use objects of the mlreportgen.dom.Color class to specify the color of a document
element.
The mlreportgen.dom.Color class is a handle class.
Creation
Properties
Hexadecimal RGB color value, specified as a character vector or string scalar. You can use either uppercase or lowercase letters as part of a hexadecimal value.
Example: "#0000ff" specifies a blue color by using
the hexadecimal RGB value.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: char | string
Color of the document element, specified as one of these formats.
| Format | Value |
|---|---|
| CSS color name | CSS color name. For a list of CSS color names, see https://www.w3.org/wiki/CSS/Properties/color/keywords. |
| Hexadecimal RGB value | RGB color in the format "#RRGGBB". Use # as the first
character and two-digit hexadecimal numbers for the red, green, and blue values.
You can use uppercase or lowercase letters. |
| Decimal RGB color value | RGB color in the format "rgb(r,g,b)", where r,
g, and b are nonnegative integers that
specify the red, green, and blue values, respectively. Each value range must be
between 0 and 255. |
| Decimal percent RGB color value | Row vector of three nonnegative numerical values between 0 and
1. The first, second, and third elements of the vector
represent the red, green, and blue values, respectively. |
Example: "red" specifies a red color by using the CSS
color name.
Example: "#0000ff" specifies a blue color by using
the hexadecimal RGB value.
Example: "rgb(255,255,0)" specifies a yellow color by
using the decimal RGB color value.
Example: [0.5 0 0.5] specifies a purple color by using a decimal percent RGB color value.
Example: [0.5 0 0.5] specifies a purple color by using a decimal percent RGB color value.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: double | char | string
Tag, 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. Use this value to help identify
where an issue occurs during document generation.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: char | string
Object identifier, specified as a character vector or string scalar. The DOM API generates a session-unique identifier when it creates the document element object.
Attributes:
GetAccess | public |
SetAccess | public |
NonCopyable | true |
Data Types: char | string
Methods
| Method | Purpose |
|---|---|
isValid | Use this method to check if a string is a valid color. tf = mlreportgen.dom.Color.isValid("red");tf = logical 1 |
getUnitVector | Use this method to get the unit vector values for a valid color. redVector = mlreportgen.dom.Color.getUnitVector("red");redVector =
1 0 0
|
Examples
Create a blue color object and apply it to a paragraph. Instead of specifying the CSS color name "blue", you could use the hexadecimal value "#0000ff".
import mlreportgen.dom.*; doctype = "html"; d = Document("test",doctype); colorfulStyle = {Bold,Color("blue")}; p = Paragraph("deep sky blue paragraph"); p.Style = colorfulStyle; append(d,p); close(d); rptview("test",doctype);
Version History
Introduced in R2014b
See Also
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)