Example #1
0
 private void DoCommitEditEvent()
 {
     if ((changeCount > 0) && (CommitEdit != null))
     {
         CommitEdit.Invoke(this, new EventArgs());
     }
 }
Example #2
0
 /// <summary>
 /// Triggers the <see cref="CommitEdit"/> event.
 /// </summary>
 /// <param name="e">Cell event arguments</param>
 protected virtual void OnCommitEdit(CellEventArgs e) => CommitEdit?.Invoke(this, e);