mlreportgen.dom.CustomAttribute class
Package: 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.
value
— Attribute value
character vector
Attribute value, specified as a character vector.
Output Arguments
customAttributeObj
— Custom attribute
mlreportgen.dom.CustomAttribute
object
Custom attribute, represented by an mlreportgen.dom.CustomAttribute
object.
Properties
Id
— ID for this document element
character vector | string scalar
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
Name
— Attribute name
character vector
Attribute name, specified as a character vector.
Tag
— Tag for this document element
character vector | string scalar
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
Value
— Value of this attribute
character vector
Value of this attribute, specified as a character vector.
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');
Beispiel öffnen
Sie haben eine geänderte Version dieses Beispiels. Möchten Sie dieses Beispiel mit Ihren Änderungen öffnen?
MATLAB-Befehl
Sie haben auf einen Link geklickt, der diesem MATLAB-Befehl entspricht:
Führen Sie den Befehl durch Eingabe in das MATLAB-Befehlsfenster aus. Webbrowser unterstützen keine MATLAB-Befehle.
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)