GC.Spread.Sheets.Tables 名前空間 > Table タイプ : bandColumns メソッド |
Javascript (Usage) | |
---|---|
var instance = new GC.Spread.Sheets.Tables.Table(name, row, col, rowCount, colCount, style, options); var returnValue; // Type: any returnValue = instance.bandColumns(value); |
Javascript (Specification) | |
---|---|
function bandColumns( value : boolean ) : any; |
//Add data for (var col = 1; col < 6; col++) { for (var row = 2; row < 11; row++) { activeSheet.setValue(row, col, row + col); } } var sTable = activeSheet.tables.add("table1", 1, 1, 10, 5, GC.Spread.Sheets.Tables.TableThemes.medium2); sTable.bandColumns(true); sTable.bandRows(true);