ASP.NET in a Nutshell, Second Edition

TableRowdisposable

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

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 }

Hierarchy

System.Object System.Web.UI.Control(System.ComponentModel.IComponent, System.IDisposable, System.Web.UI.IParserAccessor, System.Web.UI.IDataBindingsAccessor) WebControl(System.Web.UI.IAttributeAccessor) TableRow

Subclasses

DataGridItem

Returned By

TableRowCollection.this

Passed To

TableRowCollection.{Add( ), AddAt( ), AddRange( ), GetRowIndex( ), Remove( )}

Категории