GrapeCity.Xaml.SpreadSheet.UI Namespace > SelectionChangingEventArgs Class : NewSelections Property |
'Declaration Public ReadOnly Property NewSelections As CellRange()
'Usage Dim instance As SelectionChangingEventArgs Dim value() As CellRange value = instance.NewSelections
public CellRange[] NewSelections {get;}
private void gcSpreadSheet1_SelectionChanged(object sender, EventArgs e) { listBox1.Items.Add("SelectionChanged"); } private void gcSpreadSheet1_SelectionChanging(object sender, GrapeCity.Xaml.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 Object, e As System.EventArgs) Handles GcSpreadSheet1.SelectionChanged ListBox1.Items.Add("SelectionChanged") End Sub Private Sub GcSpreadSheet1_SelectionChanging(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.SelectionChangingEventArgs) Handles GcSpreadSheet1.SelectionChanging ListBox1.Items.Add(e.NewSelections(0).Column.ToString()) ListBox1.Items.Add(e.OldSelections.Length.ToString()) End Sub
Target Platforms: Windows Server 2012, Windows RT