XPTable.Models.Table.FirstPaint C# (CSharp) 메소드

FirstPaint() 개인적인 메소드

private FirstPaint ( ) : void
리턴 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