ZForge.Controls.XPTable.Events.ColumnEventArgs.ColumnEventArgs C# (CSharp) Method

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
        public ColumnEventArgs(Column source, ColumnEventType eventType, object oldValue)
            : this(source, -1, eventType, oldValue)
        {
        }

Same methods

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