mlreportgen.dom.CustomAttribute 类
命名空间: mlreportgen.dom
超类:
自定义元素属性
描述
自定义元素属性。
构造
创建一个空的自定义属性。customAttributeObj
= CustomAttribute
创建具有指定 customAttributeObj
= CustomAttribute(name
)name
的属性。
创建具有指定 customAttributeObj
= CustomAttribute(name
,value
)name
和 value
的属性。
输入参量
name
— 属性名称
字符向量
属性名称,指定为字符向量。
value
— 属性值
字符向量
属性值,指定为字符向量。
输出参量
customAttributeObj
— 自定义属性
mlreportgen.dom.CustomAttribute
对象
自定义属性,由 mlreportgen.dom.CustomAttribute
对象表示。
属性
Name
— 文档元素名称
字符向量 | 字符串标量
文档元素名称,指定为字符向量。
属性:
NonCopyable
true
数据类型: char
| string
Value
— 该属性的值
字符向量
此属性的值,指定为字符向量。
属性:
NonCopyable
true
数据类型: char
Tag
— mlreportgen.dom.CustomAttribute
对象的标签
字符向量 | 字符串标量
mlreportgen.dom.CustomAttribute
对象的标签,指定为字符向量或字符串标量。DOM API 在创建此对象的过程中生成一个会话唯一标签。生成的标签形式为 CLASS:ID
,其中 CLASS
是对象类,ID
是对象的 Id
属性的值。指定您自己的标签值,以帮助您确定在文档生成过程中出现问题时要查找的位置。
属性:
NonCopyable
true
数据类型: char
| string
Id
— mlreportgen.dom.CustomAttribute
对象的标识符
字符向量 | 字符串标量
mlreportgen.dom.CustomAttribute
对象的对象标识符,指定为字符向量或字符串标量。DOM API 在创建文档元素对象时会生成一个会话唯一标识符。您可以为 Id
指定自己的值。
属性:
NonCopyable
true
数据类型: char
| string
示例
为列表创建自定义属性
此示例显示如何定义自定义属性并将其追加到无序列表。
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 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
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)