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

Provides data for a TableModel's RowAdded and RowRemoved events
Inheritance: System.EventArgs
Mostra file Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
TableModelEventArgs ( TableModel source ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

TableModelEventArgs ( TableModel source, Row row, int fromIndex, int toIndex ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

TableModelEventArgs ( TableModel source, int fromIndex, int toIndex ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

Method Details

TableModelEventArgs() public method

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
return System

TableModelEventArgs() public method

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source, Row row, int fromIndex, int toIndex ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
row ZForge.Controls.XPTable.Models.Row The affected Row
fromIndex int The start index of the affected Row(s)
toIndex int The end index of the affected Row(s)
return System

TableModelEventArgs() public method

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source, int fromIndex, int toIndex ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
fromIndex int The start index of the affected Row(s)
toIndex int The end index of the affected Row(s)
return System