メインコンテンツ

append

クラス: mlreportgen.ppt.Table
名前空間: mlreportgen.ppt

テーブルへの行の追加

説明

rowObj = append(table,row) は、テーブルに行を追加します。

すべて展開する

プレゼンテーションを作成します。

import mlreportgen.ppt.*

ppt = Presentation("myTableEntryPresentation.pptx");
open(ppt);
add(ppt,"Title and Content");

3 つの列をもつテーブルを作成します。

table1 = Table();

最初のテーブル行を作成します。

tr1 = TableRow();
tr1.Style = {Bold(true)};

最初の行の 3 つのテーブル エントリを作成します。

te1tr1 = TableEntry();
p = Paragraph("first entry");
p.FontColor = "red";
append(te1tr1,p);

te2tr1 = TableEntry();
append(te2tr1,"second entry");

te3tr1 = TableEntry();
te3tr1.Style = {FontColor("green")};
append(te3tr1,"third entry");

最初の行にテーブル エントリを追加します。

append(tr1,te1tr1);
append(tr1,te2tr1);
append(tr1,te3tr1);

2 番目のテーブル行を作成します。

tr2 = TableRow();

2 番目の行の 3 つのテーブル エントリを作成します。

te1tr2 = TableEntry();
te1tr2.Style = {FontColor("red")};
p = Paragraph("first entry");
append(te1tr2,p);

te2tr2 = TableEntry();
append(te2tr2,"second entry");

te3tr2 = TableEntry();
te3tr2.Style = {FontColor("green")};
append(te3tr2,"third entry");

2 番目の行にテーブル エントリを追加します。

append(tr2,te1tr2);
append(tr2,te2tr2);
append(tr2,te3tr2);

テーブル行をテーブルに追加します。

append(table1,tr1);
append(table1,tr2);

mlreportgen.ppt.Presentation.find メソッドを使用して、Content プレースホルダーをもつスライドを検索します。この場合、2 つあります。

contents = find(ppt,"Content");

2 番目のスライドのテーブルを table1 に置き換えます。

replace(contents(1),table1);

プレゼンテーションを生成します。myTableEntryPresentation.pptx テンプレートを開きます。Windows® プラットフォームでは、このプレゼンテーションを MATLAB® で開くことができます。

close(ppt);
rptview(ppt);

Sample presentation with a table that contains three columns and two rows. The text in the first column is red, the text in the second column is black, and the text in the third column is green.

入力引数

すべて展開する

行を追加するテーブル。mlreportgen.ppt.Table オブジェクトとして指定します。

テーブルに追加する行。mlreportgen.ppt.TableRow オブジェクトとして指定します。

出力引数

すべて展開する

追加されたテーブル行。mlreportgen.dom.TableRow オブジェクトとして返されます。

バージョン履歴

R2015b で導入