DekGenius.com
[ Team LiB ] Previous Section Next Section

HtmlTableRowdisposable

System.Web.UI.HtmlControls (system.web.dll)class

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
}

Hierarchy

System.Object System.Web.UI.Control(System.ComponentModel.IComponent, System.IDisposable, System.Web.UI.IParserAccessor, System.Web.UI.IDataBindingsAccessor) HtmlControl(System.Web.UI.IAttributeAccessor) HtmlContainerControl HtmlTableRow

Returned By

HtmlTableRowCollection.this

Passed To

HtmlTableRowCollection.{Add( ), Insert( ), Remove( )}

    [ Team LiB ] Previous Section Next Section