Adf.Web.UI.CompoundPanel.ComposeRow C# (CSharp) Method

ComposeRow() protected method

Create html table row
protected ComposeRow ( System.Web.UI.WebControls.TableItemStyle cellstyle, int cellwidth ) : System.Web.UI.HtmlControls.HtmlTableRow
cellstyle System.Web.UI.WebControls.TableItemStyle
cellwidth int Cell width.
return System.Web.UI.HtmlControls.HtmlTableRow
        protected HtmlTableRow ComposeRow(TableItemStyle cellstyle, int cellwidth, params Control[] controls)
        {
            HtmlTableRow row = new HtmlTableRow();
            HtmlTableCell cell = ComposeCell(cellstyle, cellwidth, controls);

            row.Attributes["class"] = RowStyle.CssClass;
            row.Controls.Add(cell);

            return row;
        }