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

Provides data for a Row's PropertyChanged, CellAdded and CellRemoved events
Inheritance: System.EventArgs
Exibir arquivo Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
RowEventArgs ( Row source, Cell cell, int cellFromIndex, int cellToIndex ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

RowEventArgs ( Row source, RowEventType eventType ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

RowEventArgs ( Row source, int rowIndex, Cell cell, int cellFromIndex, int cellToIndex, RowEventType eventType ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

Private Methods

Method Description
SetRowIndex ( int rowIndex ) : void

Method Details

RowEventArgs() public method

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, Cell cell, int cellFromIndex, int cellToIndex ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
cell ZForge.Controls.XPTable.Models.Cell The affected Cell
cellFromIndex int The start index of the affected Cell(s)
cellToIndex int The end index of the affected Cell(s)
return System

RowEventArgs() public method

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, RowEventType eventType ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
eventType RowEventType The type of event
return System

RowEventArgs() public method

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, int rowIndex, Cell cell, int cellFromIndex, int cellToIndex, RowEventType eventType ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
rowIndex int The index of the Row
cell ZForge.Controls.XPTable.Models.Cell The affected Cell
cellFromIndex int The start index of the affected Cell(s)
cellToIndex int The end index of the affected Cell(s)
eventType RowEventType The type of event
return System