[]
Adds a selection.
[JavaScript]
FpSpread1.AddSelection(row,column,rowcount,columncount);
row
Integer, row index
column
Integer, column index
rowcount
Integer, number of rows
columncount
Integer, number of columns
None
This method is similar to selecting cells with the mouse.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
<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>