| Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > ScrollTo | 
Moves the specified cell to the top, left corner of the view area.
[JavaScript]
FpSpread1.ScrollTo(row,column);
None
This method moves the specified cell to the top, left corner of the view area (displayed area). This method does not cause a postback to occur.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
| JavaScript | 
                     
                        Copy Code
                     
                 | 
            
|---|---|
                    
<SCRIPT language=javascript>
   function moveCell() {
       FpSpread1.ScrollTo(10,1);
   }
</SCRIPT>
                 | 
            |