Encapsulates a collection of System.Web.UI.WebControls.TableRow objects that represent a single row in a System.Web.UI.WebControls.Table control. This class cannot be inherited.
See Also: TableRowCollection Members
Use this class to programmatically manage a collection of System.Web.UI.WebControls.TableRow objects. This class is commonly used to add or remove rows from a System.Web.UI.WebControls.Table control.
A System.Web.UI.WebControls.Table control contains a Table.Rows collection that represents a collection of System.Web.UI.WebControls.TableRow objects. Each System.Web.UI.WebControls.TableRow represents an individual row in the table and contains a TableRow.Cells collection that represents a collection of System.Web.UI.WebControls.TableCell objects. These System.Web.UI.WebControls.TableCell objects represent the individual cells in the table. To get an individual cell, you must first get a System.Web.UI.WebControls.TableRow from the Table.Rows collection of a System.Web.UI.WebControls.Table control. You can then get a System.Web.UI.WebControls.TableCell from the TableRow.Cells collection of the System.Web.UI.WebControls.TableRow.