mlreportgen.dom.CustomAttribute Class
Namespace: mlreportgen.dom
Superclasses:
Custom element attribute
Description
Custom element attribute.
Construction
creates
an empty custom attribute.customAttributeObj
= CustomAttribute
creates
an attribute having the specified customAttributeObj
= CustomAttribute(name
)name
.
creates
an attribute having the specified customAttributeObj
= CustomAttribute(name
,value
)name
and value
.
Input Arguments
name
— Attribute name
character vector
Attribute name, specified as a character vector or string scalar.
value
— Attribute value
character vector
Attribute value, specified as a character vector or string scalar.
Output Arguments
customAttributeObj
— Custom attribute
mlreportgen.dom.CustomAttribute
object
Custom attribute, represented by an mlreportgen.dom.CustomAttribute
object.
Properties
Name
— Document element name
character vector | string scalar
Document element name, specified as a character vector or string scalar.
Attributes:
NonCopyable
true
Data Types: char
| string
Value
— Value of this attribute
character vector
Value of this attribute, specified as a character vector or string scalar.
Attributes:
NonCopyable
true
Data Types: char
Tag
— Tag for mlreportgen.dom.CustomAttribute
object
character vector | string scalar
Tag for the mlreportgen.dom.CustomAttribute
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.CustomAttribute
object
character vector | string scalar
Object identifier for the mlreportgen.dom.CustomAttribute
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
Create Custom Attributes for a List
This example shows how to define custom attributes and append them to an unordered list.
import mlreportgen.dom.*; d = Document('test'); ul = UnorderedList(); li = ListItem('Owl'); li.CustomAttributes = {CustomAttribute('data-animal-type','bird')}; append(ul,li); li = ListItem('Salmon'); li.CustomAttributes = {CustomAttribute('data-animal-type','fish')}; append(ul,li); li = ListItem('Tarantula'); li.CustomAttributes = {CustomAttribute('data-animal-type','spider')}; append(ul,li); append(d,ul); close(d); rptview('test','html');
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 (한국어)