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

Provides data for a Column's PropertyChanged event, or a Table's BeginSort and EndSort events
Afficher le fichier Open project: zhuangyy/Motion Class Usage Examples

Méthodes publiques

Méthode Description
ColumnEventArgs ( Column source, ColumnEventType eventType, object oldValue ) : System

Initializes a new instance of the ColumnEventArgs class with the specified Column source, column index and event type

ColumnEventArgs ( Column source, int index, ColumnEventType eventType, object oldValue ) : System

Initializes a new instance of the ColumnEventArgs class with the specified Column source, column index and event type

Private Methods

Méthode Description
SetColumn ( Column column ) : void

SetIndex ( int index ) : void

Method Details

ColumnEventArgs() public méthode

Initializes a new instance of the ColumnEventArgs class with the specified Column source, column index and event type
public ColumnEventArgs ( Column source, ColumnEventType eventType, object oldValue ) : System
source ZForge.Controls.XPTable.Models.Column The Column that Raised the event
eventType ColumnEventType The type of event
oldValue object The old value of the changed property
Résultat System

ColumnEventArgs() public méthode

Initializes a new instance of the ColumnEventArgs class with the specified Column source, column index and event type
public ColumnEventArgs ( Column source, int index, ColumnEventType eventType, object oldValue ) : System
source ZForge.Controls.XPTable.Models.Column The Column that Raised the event
index int The index of the Column
eventType ColumnEventType The type of event
oldValue object The old value of the changed property
Résultat System