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


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()
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
RemoveSelection Method
SetSelection Method

 

 


Copyright © GrapeCity, inc. All rights reserved.