Spread for ASP.NET 10 Product Documentation
RemoveSelection Method (BaseSheetSelectionModel)
Example 


Row index of the cell at which to start
Column index of the cell at which to start
Number of rows to deselect
Number of columns to deselect
Removes the specified selection range from the selection list, if one exists.
Syntax
'Declaration
 
Public Overridable Sub RemoveSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'Usage
 
Dim instance As BaseSheetSelectionModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.RemoveSelection(row, column, rowCount, columnCount)
public virtual void RemoveSelection( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

Parameters

row
Row index of the cell at which to start
column
Column index of the cell at which to start
rowCount
Number of rows to deselect
columnCount
Number of columns to deselect
Example
This example clears the selections from the model.
FarPoint.Web.Spread.Model.BaseSheetSelectionModel bsm;
bsm = (FarPoint.Web.Spread.Model.BaseSheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
bsm.AddSelection(0, 0, 2, 2);
bsm.AddSelection(1, 1, 3, 3);

Response.Write("<script>alert('Remove Selection?')</script>");
bsm.RemoveSelection(1, 1, 3, 3);
Dim bsm As FarPoint.web.Spread.Model.BaseSheetSelectionModel
bsm = FpSpread1.ActiveSheetView.SelectionModel
bsm.AddSelection(0, 0, 1, 2)
bsm.AddSelection(1, 1, 3, 3)

Response.Write("<script>alert('Remove Selection?')</script>")
bsm.RemoveSelection(1, 1, 3, 3)
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

BaseSheetSelectionModel Class
BaseSheetSelectionModel Members
AddSelection Method
ClearSelection Method
SetSelection Method

 

 


Copyright © GrapeCity, inc. All rights reserved.