Spread Silverlight Documentation
OldSelections Property
Example 


GrapeCity.Windows.SpreadSheet.UI Namespace > SelectionChangingEventArgs Class : OldSelections Property
Gets the old selection ranges.
Syntax
'Declaration
 
Public ReadOnly Property OldSelections As CellRange()
'Usage
 
Dim instance As SelectionChangingEventArgs
Dim value() As CellRange
 
value = instance.OldSelections
public CellRange[] OldSelections {get;}

Property Value

The old selection ranges.
Example
This example uses the OldSelections property.
private void gcSpreadSheet1_SelectionChanged(object sender, EventArgs e)
        {
            listBox1.Items.Add("SelectionChanged");
        }

private void gcSpreadSheet1_SelectionChanging(object sender, GrapeCity.Windows.SpreadSheet.UI.SelectionChangingEventArgs e)
        {
            listBox1.Items.Add(e.NewSelections[0].Column.ToString());
            listBox1.Items.Add(e.OldSelections.Length.ToString());
        }
Private Sub GcSpreadSheet1_SelectionChanged(sender As System.Object, e As System.EventArgs) Handles GcSpreadSheet1.SelectionChanged
        ListBox1.Items.Add("SelectionChanged")
    End Sub

    Private Sub GcSpreadSheet1_SelectionChanging(sender As System.Object, e As GrapeCity.Windows.SpreadSheet.UI.SelectionChangingEventArgs) Handles GcSpreadSheet1.SelectionChanging
        ListBox1.Items.Add(e.NewSelections(0).Column.ToString())
        ListBox1.Items.Add(e.OldSelections.Length.ToString())
    End Sub
See Also

Reference

SelectionChangingEventArgs Class
SelectionChangingEventArgs Members