ZForge.Controls.XPTable.Events.CellEventArgs.CellEventArgs C# (CSharp) Метод

CellEventArgs() публичный Метод

Initializes a new instance of the CellEventArgs class with the specified Cell source and event type
public CellEventArgs ( Cell source, CellEventType eventType, object oldValue ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
eventType CellEventType The type of event
oldValue object The old value of the property
Результат System
        public CellEventArgs(Cell source, CellEventType eventType, object oldValue)
            : this(source, -1, -1, eventType, oldValue)
        {
        }

Same methods

CellEventArgs::CellEventArgs ( Cell source, int column, int row, CellEventType eventType, object oldValue ) : System
CellEventArgs