C# Класс ZForge.Controls.XPTable.Events.TableModelEventArgs

Provides data for a TableModel's RowAdded and RowRemoved events
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Описание методов

TableModelEventArgs() публичный Метод

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
Результат System

TableModelEventArgs() публичный Метод

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)
Результат System

TableModelEventArgs() публичный Метод

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)
Результат System