Main Content

setRowHeading

テーブルの行タイトルの指定

構文

setRowHeading(table, row, heading)

説明

setRowHeading(table, row, heading) は、指定されたテーブル行のタイトルを指定します。

入力引数

table

ModelAdvisor.Table クラスをインスタンス化したもの

row

行数を指定する整数

heading

テーブルの行タイトルを指定する文字ベクトル、要素オブジェクト、またはオブジェクト配列

table1 = ModelAdvisor.Table(2,3);
setRowHeading(table1, 1, 'Row 1 Title');
setRowHeading(table1, 2, 'Row 2 Title');