This class represents an individual row element in a Table control. Each table row contains a group of TableCell objects, which is provided through the Cells property. Most other properties are used for fine-tuning the appearance of a row.
public class TableRow : WebControl { // Public Constructors public TableRow( ); // Public Instance Properties public virtual TableCellCollection Cells{get; } public virtual HorizontalAlign HorizontalAlign{set; get; } public virtual VerticalAlign VerticalAlign{set; get; } // Protected Instance Methods protected override ControlCollection CreateControlCollection( ); // overrides System.Web.UI.Control protected override Style CreateControlStyle( ); // overrides WebControl }