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

Base class for classes containing Cell event data
Inheritance: System.EventArgs
Afficher le fichier Open project: zhuangyy/Motion

Méthodes publiques

Méthode 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

Méthode Description
SetColumn ( int column ) : void

SetRow ( int row ) : void

Method Details

CellEventArgsBase() public méthode

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
Résultat System

CellEventArgsBase() public méthode

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
Résultat System