SpreadJS Documentation
moveTableByName Method
The name of the table to move.
The new row index.
The new column index.
Changes the table location.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: Sheet
value = instance.moveTableByName(name, row, column);
function moveTableByName( 
   name : string,
   row : number,
   column : number
) : Sheet;

Parameters

name
The name of the table to move.
row
The new row index.
column
The new column index.

Return Value

The sheet in which the table was moved.
Example
This example moves the table using the name.
var activeSheet = spread.getActiveSheet();

activeSheet.addTable("Table1", 0, 0, 3, 3, GcSpread.Sheets.TableStyles.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");

$("#button1").click(function () {
var table  = activeSheet.findTableByName("Table1");
alert(table);
activeSheet.moveTableByName("Table1", 3, 3);
    });
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.