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

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

Public Methods

Method 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

Method Description
SetColumn ( Column column ) : void

SetIndex ( int index ) : void

Method Details

ColumnEventArgs() public method

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
return System

ColumnEventArgs() public method

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
return System