XPTable.Models.Table.OnColumnAdded C# (CSharp) Method

OnColumnAdded() protected method

Raises the ColumnAdded event
protected OnColumnAdded ( ColumnModelEventArgs e ) : void
e ColumnModelEventArgs A ColumnModelEventArgs that contains the event data
return void
        protected internal virtual void OnColumnAdded(ColumnModelEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                this.PerformLayout();
                this.Invalidate();

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