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

OnAfterFirstPaint() protected method

Raises the AfterFirstPaint event
protected OnAfterFirstPaint ( EventArgs e ) : void
e System.EventArgs
return void
        protected virtual void OnAfterFirstPaint(EventArgs e)
        {
            if (AfterFirstPaint != null)
            {
                AfterFirstPaint(this, e);
            }
        }
Table