Spread.Sheets Documentation
Setting the Active Cell at a Specific Location

You can specify the location of the active cell.

Using Code

This example sets the location of the active cell.

JavaScript
Copy Code

$("#button1").click(function () {
    //Set cell (3,3) to active
     sheet.setActiveCell(3, 3);

     //Display the active cell on top left
     sheet.showCell(3, 3, GC.Spread.Sheets.VerticalPosition.top, GC.Spread.Sheets.HorizontalPosition.left);
});

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.