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