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

OnLayout() protected method

Raises the Layout event
protected OnLayout ( LayoutEventArgs levent ) : void
levent LayoutEventArgs A LayoutEventArgs that contains the event data
return void
        protected override void OnLayout(LayoutEventArgs levent)
        {
            if (this.IsHandleCreated && !this.init)
            {
                base.OnLayout(levent);
            }

            this.UpdateScrollBars();
        }
Table