Spread Silverlight Documentation
OldSelections Property
Example 


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
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SelectionChangingEventArgs Class
SelectionChangingEventArgs Members

 

 


Copyright © GrapeCity, inc. All rights reserved.