GC.Spread.Sheets.Tables 名前空間 > TableManager タイプ : add メソッド |
Javascript (Usage) | |
---|---|
var instance = new GC.Spread.Sheets.Tables.TableManager(sheet); var value; // Type: Table value = instance.add(name, row, column, rowCount, columnCount, style, options); |
Javascript (Specification) | |
---|---|
function add( name : string, row : number, column : number, rowCount : number, columnCount : number, style : TableTheme, options : Object ) : Table; |
activeSheet.tables.add("Table1", 0, 0, 3, 3, GC.Spread.Sheets.Tables.TableThemes.dark1); activeSheet.getCell(0,0).text("Name"); activeSheet.getCell(0,1).text("Value"); activeSheet.getCell(0,2).text("T/F"); activeSheet.getCell(1,0).text("AW"); activeSheet.getCell(1,1).text("5"); activeSheet.getCell(1,2).text("T");