This class represents an individual <tr> table row element in an HTML table. Each table row contains a group of HtmlTableCell objects, which is provided through the Cells property. Most other properties are used for fine-tuning the appearance of a row.
public class HtmlTableRow : HtmlContainerControl { // Public Constructors public HtmlTableRow( ); // Public Instance Properties public string Align{set; get; } public string BgColor{set; get; } public string BorderColor{set; get; } public virtual HtmlTableCellCollection Cells{get; } public string Height{set; get; } public override string InnerHtml{set; get; } // overrides HtmlContainerControl public override string InnerText{set; get; } // overrides HtmlContainerControl public string VAlign{set; get; } // Protected Instance Methods protected override ControlCollection CreateControlCollection( ); // overrides HtmlContainerControl protected override void RenderChildren(System.Web.UI.HtmlTextWriter writer); // overrides System.Web.UI.Control protected override void RenderEndTag(System.Web.UI.HtmlTextWriter writer); // overrides HtmlContainerControl }