Spread for ASP.NET 11 Product Documentation
ClearSelection Method (BaseSheetSelectionModel)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > BaseSheetSelectionModel Class : ClearSelection Method
Removes all of the selections from the sheet so that cells are no longer selected.
Syntax
'Declaration
 
Public Overridable Sub ClearSelection() 
'Usage
 
Dim instance As BaseSheetSelectionModel
 
instance.ClearSelection()
public virtual void ClearSelection()
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);
 
Response.Write("<script>alert('Remove Selection?')</script>");
bsm.ClearSelection();
Dim bsm As FarPoint.web.Spread.Model.BaseSheetSelectionModel
bsm = FpSpread1.ActiveSheetView.SelectionModel
bsm.AddSelection(0, 0, 2, 2)

Response.Write("<script>alert('Remove Selection?')</script>")
bsm.ClearSelection()
See Also

Reference

BaseSheetSelectionModel Class
BaseSheetSelectionModel Members
AddSelection Method
RemoveSelection Method
SetSelection Method