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

OnColumnRemoved() protected method

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

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