Adf.Web.UI.TwoColumnPanel.RenderRow C# (CSharp) Method

RenderRow() protected method

Renders a row containing control cells to a table.
The rows are initially added to the left column and when it's full, they are added to the right column
protected RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control controls ) : void
table System.Web.UI.HtmlControls.HtmlTable The output table.
controls System.Web.UI.Control The collection of controls.
return void
        protected override void RenderRow(HtmlTable table, Control[] controls)
        {
            HtmlTableRow controlrow = ComposeRow(ControlCellStyle, ControlCellWidth, controls);

            if (linecount < split)
            {
                left.Controls.Add(controlrow);
            }
            else
            {
                right.Controls.Add(controlrow);
            }

            linecount ++;
        }

Same methods

TwoColumnPanel::RenderRow ( System.Web.UI.HtmlControls.HtmlTable table, Control label, Control controls ) : void