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

    Adds a selection.

    Syntax

    [JavaScript]

    FpSpread1.AddSelection(row,column,rowcount,columncount);

    Parameters

    row
    Integer, row index
    column
    Integer, column index
    rowcount
    Integer, number of rows
    columncount
    Integer, number of columns

    Return Type

    None

    Remarks

    This method is similar to selecting cells with the mouse.

    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 addSelRanges() {
           FpSpread1.AddSelection(0,0,1,1); // adds a selection
           FpSpread1.AddSelection(2,2,1,1); // adds another selection
       }
    </script>
    
    See Also