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

Base class for classes containing Cell event data
Inheritance: System.EventArgs
Mostra file Open project: zhuangyy/Motion

Public Methods

Method Description
CellEventArgsBase ( Cell source ) : System

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

CellEventArgsBase ( Cell source, int column, int row ) : System

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

Private Methods

Method Description
SetColumn ( int column ) : void

SetRow ( int row ) : void

Method Details

CellEventArgsBase() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source and event type
public CellEventArgsBase ( Cell source ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
return System

CellEventArgsBase() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index and row index
public CellEventArgsBase ( Cell source, int column, int row ) : 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
return System