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

FirstPaint() private method

private FirstPaint ( ) : void
return void
        private void FirstPaint()
        {
            OnAfterFirstPaint(EventArgs.Empty);

            // Do this so that scrollbars are evaluated whilst the actual row heights are known
            if (this.EnableWordWrap)
            {
                if (autoCalculateRowHeights)
                    this.CalculateAllRowHeights();
                this.UpdateScrollBars();   // without this the scolling will have been set up assuming all rows have the default height
            }
        }
Table