FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : SelectionChanged Event |
'Declaration Public Event SelectionChanged As SelectionChangedEventHandler
'Usage Dim instance As FpSpread Dim handler As SelectionChangedEventHandler AddHandler instance.SelectionChanged, handler
public event SelectionChangedEventHandler SelectionChanged
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.
Property | Description |
---|---|
Range | Gets the range of cells encompassing the selection. |
View | Gets the view that contains the selection. |
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.
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
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