Spread ASP.NET 6.0 Product Documentation
MoveToNextCell
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > MoveToNextCell

Glossary Item Box

Moves the active cell to the next cell.

Syntax

[JavaScript]

FpSpread1.MoveToNextCell();

Parameters

None

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.

Example

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.MoveToNextCell();
   } 
</SCRIPT>

See Also

MoveToFirstColumn | MoveToLastColumn | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.