예제 #1
0
 /// <summary>
 /// Initializes a new instance of the CellEventArgs class with
 /// the specified Cell source, column index, row index and event type
 /// </summary>
 /// <param name="source">The Cell that Raised the event</param>
 /// <param name="column">The Column index of the Cell</param>
 /// <param name="row">The Row index of the Cell</param>
 /// <param name="eventType">The type of event</param>
 /// <param name="oldValue">The old value of the property</param>
 public I3CellEventArgs(I3Cell source, int column, int row, I3CellEventType eventType, object oldValue) : base(source, column, row)
 {
     this.eventType = eventType;
     this.oldValue  = oldValue;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the CellEventArgs class with
 /// the specified Cell source and event type
 /// </summary>
 /// <param name="source">The Cell that Raised the event</param>
 /// <param name="eventType">The type of event</param>
 /// <param name="oldValue">The old value of the property</param>
 public I3CellEventArgs(I3Cell source, I3CellEventType eventType, object oldValue) : this(source, -1, -1, eventType, oldValue)
 {
 }