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

RenderRow() protected method

Renders a row containing control cells to a table.
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 tr = new HtmlTableRow();

            HtmlTableCell controlcell = ComposeCell(ControlCellStyle, ControlCellWidth, controls);
            tr.Controls.Add(controlcell);

            table.Controls.Add(tr);
        }

Same methods

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