Adf.Web.UI.VerticalPanel.RenderRow C# (CSharp) 메소드

RenderRow() 보호된 메소드

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.
리턴 void
        protected override void RenderRow(HtmlTable table, Control[] controls)
        {
            HtmlTableRow controlrow = ComposeRow(ControlCellStyle, ControlCellWidth, controls);
            table.Controls.Add(controlrow);
        }

Same methods

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