C# Class ZForge.Controls.XPTable.Events.SelectionEventArgs

Provides data for a TableModel's SelectionChanged event
Inheritance: System.EventArgs
Exibir arquivo Open project: zhuangyy/Motion Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
SelectionEventArgs ( TableModel source, int oldSelectedIndicies, int newSelectedIndicies ) : System

Initializes a new instance of the SelectionEventArgs class with the specified TableModel source, old selected indicies and new selected indicies

Method Details

SelectionEventArgs() public method

Initializes a new instance of the SelectionEventArgs class with the specified TableModel source, old selected indicies and new selected indicies
public SelectionEventArgs ( TableModel source, int oldSelectedIndicies, int newSelectedIndicies ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
oldSelectedIndicies int An array of the previously selected Rows
newSelectedIndicies int An array of the newly selected Rows
return System