ZForge.Controls.XPTable.Models.TableModel.OnCellAdded C# (CSharp) 메소드

OnCellAdded() 개인적인 메소드

Raises the CellAdded event
private OnCellAdded ( RowEventArgs e ) : void
e ZForge.Controls.XPTable.Events.RowEventArgs A RowEventArgs that contains the event data
리턴 void
        internal void OnCellAdded(RowEventArgs e)
        {
            if (this.Table != null)
            {
                this.Table.OnCellAdded(e);
            }
        }