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

OnRowHeightChanged() protected method

Raises the RowHeightChanged event
protected OnRowHeightChanged ( EventArgs e ) : void
e EventArgs An EventArgs that contains the event data
return void
        protected internal virtual void OnRowHeightChanged(EventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                this.PerformLayout();
                this.Invalidate();

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