# ScrollTo

Use the ScrollTo method to move the specified cell to the top, left corner of the view area. Learn its syntax and parameters in documentation.

## Content

Moves the specified cell to the top, left corner of the view area.

## Syntax

[JavaScript]

```javascript
FpSpread1.ScrollTo(row,column);
```

## Parameters

***row***
Integer, row index
***column***
Integer, column index

## Return Type

None

## Remarks

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.

## Example

This is a sample that contains the method. On the client side, the script that contains the method would look like this:

```javascript
<script type="text/javascript">
   function moveCell() {
       FpSpread1.ScrollTo(10,1);
   }
</script>
```

## See Also

[MoveToNextRow](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-MoveToNextRow)
[MoveToNextCell](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-MoveToNextCell)
[Scripting Members](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members)