var instance = new GC.Spread.Sheets.Tables.TableManager(sheet); var value; // Type: Table value = instance.add(name, row, column, rowCount, columnCount, style, options, options.showHeader, options.showFooter);
function add( name : string, row : number, column : number, rowCount : number, columnCount : number, style : TableTheme, options : Object, (optional) options.showHeader : boolean, (optional) options.showFooter : boolean ) : Table;
パラメータ
- name
- テーブル名。
- row
- 行インデックス。
- column
- 列インデックス。
- rowCount
- テーブルの行数。
- columnCount
- テーブルの列数。
- style
- テーブルのスタイル。
- options
- テーブルの初期化オプション。
- options.showHeader
- ヘッダを表示するかどうか。
- options.showFooter
- フッタを表示するかどうか。
戻り値の型
新しいテーブルインスタンス。