ZForge.Controls.XPTable.Models.Row.OnSubRowAdded C# (CSharp) Method

OnSubRowAdded() protected method

Raises the SubRowAdded event
protected OnSubRowAdded ( RowEventArgs e ) : void
e ZForge.Controls.XPTable.Events.RowEventArgs
return void
        protected internal virtual void OnSubRowAdded(RowEventArgs e)
        {
            this.TableModel.Rows.Add(e.Row);

            if (SubRowAdded != null)
            {
                SubRowAdded(this, e);
            }
        }