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

Provides data for a ColumnModel's ColumnAdded, ColumnRemoved, and HeaderHeightChanged events
显示文件 Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
ColumnModelEventArgs ( ColumnModel source, Column column, int fromIndex, int toIndex ) : System

Initializes a new instance of the ColumnModelEventArgs class with the specified ColumnModel source, start index, end index and affected Column

Method Details

ColumnModelEventArgs() public method

Initializes a new instance of the ColumnModelEventArgs class with the specified ColumnModel source, start index, end index and affected Column
public ColumnModelEventArgs ( ColumnModel source, Column column, int fromIndex, int toIndex ) : System
source ZForge.Controls.XPTable.Models.ColumnModel The ColumnModel that originated the event
column ZForge.Controls.XPTable.Models.Column The affected Column
fromIndex int The start index of the affected Column(s)
toIndex int The end index of the affected Column(s)
return System