Spread Windows Forms 9.0 Product Documentation
SelectionChanged Event (FpSpread)
Example 


Occurs when the selection of cells on the sheet has changed.
Syntax
'Declaration
 
Public Event SelectionChanged As SelectionChangedEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As SelectionChangedEventHandler
 
AddHandler instance.SelectionChanged, handler
public event SelectionChangedEventHandler SelectionChanged
Event Data

The event handler receives an argument of type SelectionChangedEventArgs containing data related to this event. The following SelectionChangedEventArgs properties provide information specific to this event.

PropertyDescription
RangeGets the range of cells encompassing the selection.  
ViewGets the view that contains the selection.  
Remarks

This event is raised by the OnSelectionChanged method when the sheet selection is changed.

This event occurs each time the selected range of cells changes when the user extends the selection by dragging the mouse or by pressing simultaneously the Shift key and an arrow key.

For more details on the individual event arguments, refer to SelectionChangedEventArgs members.

Example
This example raises the event.
private void fpSpread1_SelectionChanged(object sender, FarPoint.Win.Spread.SelectionChangedEventArgs e)
{
     FarPoint.Win.Spread.Model.CellRange cr;
     cr = e.View.Sheets[0].GetSelection(0);
     Label1.Text = "The first column in the selection is " + cr.Column + " and the first row is " + cr.Row;
}
Private Sub FpSpread1_SelectionChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SelectionChangedEventArgs) Handles
FpSpread1.SelectionChanged
     Dim cr As FarPoint.Win.Spread.Model.CellRange
     cr = e.View.Sheets(0).GetSelection(0)
     Label1.Text = "The first column in the selection is " & cr.Column & " and the first row is " & cr.Row
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members
SelectionChanging Event
SelectionChangedEventArgs Class

 

 


Copyright © GrapeCity, inc. All rights reserved.