Spread for ASP.NET 7.0 Product Documentation
MoveToNextRow
See Also Support Options
Spread for ASP.NET 7.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > MoveToNextRow

Glossary Item Box

Moves the active cell to the next row.

Syntax

[JavaScript]

FpSpread1.MoveToNextRow(wrap);

Parameters

wrap
Boolean, whether to wrap to the first row when you reach the end of the control

Return Type

None

Remarks

This method moves the active cell down to 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 moveRow() {
       FpSpread1.MoveToNextRow(true);
   }
</SCRIPT>

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.