appendFooterRow
类: mlreportgen.dom.FormalTable
命名空间: mlreportgen.dom
将行追加到表脚
示例
追加表脚
创建、格式化并追加正式表格。
import mlreportgen.dom.*; myReport = Document('myDoc','html'); table = FormalTable({'row1 - col1' 'row1 - col2 ';... 'row2 - col1' 'row2 - col2'}); table.Style = {Border('double'),ColSep('solid'),RowSep('solid')}; append(myReport,table);
为页脚创建一行(及其条目)。对行中的文本使用粗体。
rowForFooter = TableRow(); rowForFooter.Style = {Bold(true)}; col1Title = TableEntry('Column 1 footer'); col2Title = TableEntry('Column 2 footer'); append(rowForFooter,col1Title); append(rowForFooter,col2Title);
追加页脚行并显示报告。
footerRow = appendFooterRow(table,rowForFooter); close(myReport); rptview('myDoc','html');
输入参数
tableObj
— 表
mlreportgen.dom.FormalTable
对象
包含要追加行的页脚的表。
rowObj
— 追加到表页脚的行
mlreportgen.dom.TableRow
对象
要追加到表页脚的行,指定为 mlreportgen.dom.TableRow
对象。
输出参量
rowObjOut
— 行追加到表脚
mlreportgen.dom.TableRow
对象
追加到表脚的行,由 mlreportgen.dom.TableRow
对象表示。
版本历史记录
在 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)