mlreportgen.dom.VerticalAlign 类
命名空间: mlreportgen.dom
行内文档元素的垂直对齐
创建对象
属性
Value
— 垂直对齐
字符向量
内联文档元素的垂直对齐方式,指定为以下值之一:
'superscript'
或'super'
- 将元素作为上标与父元素对齐。'subscript'
或'sub'
- 将元素作为下标与父元素对齐。'baseline'
- 将元素的基线与父元素的基线对齐。'text-top'
- 将元素的顶部与父元素的 内容区域 的顶部对齐。Word 文档不支持此值。'text-bottom'
- 将元素的底部与父元素的 内容区域 底部对齐。Word 文档不支持此值。长度 - 元素相对于父元素基线升高或降低的量。将长度格式化为
valueUnits
,其中value
是单位数,Units
是单位缩写。使用表中的一个缩写。单位名称 单位缩写 像素(不支持 Word 文档) px
厘米 cm
英寸 in
毫米 mm
派卡 pc
磅 pt
行高百分比(不支持 Word 文档) %
请参阅 CSS 规范中的 vertical-align 属 性。
如果不提供 VerticalAlign
对象,则对齐默认为基线对齐。如果您提供 VerticalAlign
对象,但未指定对齐方式,则对齐方式默认为上标对齐。
示例: 'text-top'
示例: '0.25in'
示例: '50%'
Id
— mlreportgen.dom.VerticalAlign
对象的标识符
字符向量 | 字符串标量
mlreportgen.dom.VerticalAlign
对象的对象标识符,指定为字符向量或字符串标量。DOM API 在创建文档元素对象时会生成一个会话唯一标识符。您可以为 Id
指定自己的值。
属性:
NonCopyable | true |
数据类型: char
| string
Tag
— mlreportgen.dom.VerticalAlign
对象的标签
字符向量 | 字符串标量
mlreportgen.dom.VerticalAlign
对象的标签,指定为字符向量或字符串标量。DOM API 在创建此对象的过程中生成一个会话唯一标签。生成的标签形式为 CLASS:ID
,其中 CLASS
是对象类,ID
是对象的 Id
属性的值。指定您自己的标签值,以帮助您确定在文档生成过程中出现问题时要查找的位置。
属性:
NonCopyable | true |
数据类型: char
| string
示例
将文本垂直对齐为上标
将文本作为上标与父段落中的文本对齐。创建 VerticalAlign
对象而不提供输入参量会将对齐设置为上标。
import mlreportgen.dom.*; doctype = 'html'; d = Document('test',doctype); p = Paragraph('e = mc'); t = Text('2'); t.Style = {VerticalAlign()}; append(p,t); append(d,p); close(d); rptview('test',doctype);
将图像与文本底部对齐
通过指定 'text-bottom'
将图像的底部与周围文本的底部对齐。
import mlreportgen.dom.*; doctype = 'html'; d = Document('mydoc',doctype); p = Paragraph('This image '); p.FontSize = '20'; im = Image('image_to_align.png'); im.Style = {VerticalAlign('text-bottom')}; t = Text(' is aligned with the bottom of the surrounding text.'); append(p,im); append(p,t); append(d,p); close(d); rptview('mydoc',doctype);
版本历史记录
在 R2014b 中推出
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)