Spread ASP.NET 17
Spread for ASP.NET 17 Product Documentation / Client-Side Scripting Reference / Scripting Members / Methods / MoveToLastColumn
In This Topic
    MoveToLastColumn
    In This Topic

    Moves the active cell to the last column.

    Syntax

    [JavaScript]

    FpSpread1.MoveToLastColumn();

    Parameters

    None

    Return Type

    None

    Remarks

    This method moves the active cell to the last column in the same 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 type="text/javascript">
       function moveColumn() {
           FpSpread1.MoveToLastColumn();
       }
    </script>
    
    See Also