# MoveToNextCell

Use the MoveToNextCell method to move the active cell to the next cell. Learn its syntax and parameters in documentation.

## Content

Moves the active cell to the next cell.

## Syntax

[JavaScript]

```javascript
FpSpread1.MoveToNextCell(isTabStop);
```

## Parameters

***isTabStop***
Boolean, whether to move to the next cell based on the TabStop property setting

## Return Type

None

## Remarks

This method moves the active cell one cell to the right. If the cell is at the end of the row, it moves the active cell down to the first cell in the next row. This will cause the **onActiveCellChanging**, **onActiveCellChanged**, and **onSelectionChanged** events to occur. This method does not cause a postback to occur.
If the **TabStop** property is false for a cell and *isTabStop* is false, the cell is not skipped when moving. If **TabStop** is false and *isTabStop* is true, then the cell is skipped when moving. Set the *isTabStop* parameter to true to use the **TabStop** property setting for the cell.

## 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.MoveToNextCell(true);
   }
</script>
```

## See Also

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