Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / ISheetSelectionModel Interface / ClearSelection Method
Example


In This Topic
    ClearSelection Method (ISheetSelectionModel)
    In This Topic
    Removes the selection.
    Syntax
    'Declaration
     
    Sub ClearSelection() 
    'Usage
     
    Dim instance As ISheetSelectionModel
     
    instance.ClearSelection()
    void ClearSelection()
    Example
    FarPoint.Web.Spread.Model.ISheetSelectionModel iss;
    iss = (FarPoint.Web.Spread.Model.ISheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
    iss.ClearSelection();
    
    Dim iss As FarPoint.Web.Spread.Model.ISheetSelectionModel
    iss = FpSpread1.ActiveSheetView.SelectionModel
    iss.ClearSelection()
    See Also