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

Provides data for a Cell's PropertyChanged event
Inheritance: CellEventArgsBase
ファイルを表示 Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
CellEventArgs ( Cell source, CellEventType eventType, object oldValue ) : System

Initializes a new instance of the CellEventArgs class with the specified Cell source and event type

CellEventArgs ( Cell source, int column, int row, CellEventType eventType, object oldValue ) : System

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index, row index and event type

Method Details

CellEventArgs() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source and event type
public CellEventArgs ( Cell source, CellEventType eventType, object oldValue ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
eventType CellEventType The type of event
oldValue object The old value of the property
return System

CellEventArgs() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index, row index and event type
public CellEventArgs ( Cell source, int column, int row, CellEventType eventType, object oldValue ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
column int The Column index of the Cell
row int The Row index of the Cell
eventType CellEventType The type of event
oldValue object The old value of the property
return System