| System.Web.UI.HtmlControls (system.web.dll) | sealed class |
This collection of HtmlTableRow objects is used by
the Rows property of the
HtmlTable class.
public sealed class HtmlTableRowCollection : ICollection, IEnumerable {
// Public Instance Properties
public int
Count {get; } // implements ICollection
public bool
IsReadOnly {get; }
public bool
IsSynchronized {get; } // implements ICollection
public object
SyncRoot {get; } // implements ICollection
public HtmlTableRow
this [int
index ]{get; }
// Public Instance Methods
public void
Add (HtmlTableRow
row );
public void
Clear ( );
public void
CopyTo (Array
array , int
index ); // implements ICollection
public IEnumerator
GetEnumerator ( ); // implements IEnumerable
public void
Insert (int
index , HtmlTableRow
row );
public void
Remove (HtmlTableRow
row );
public void
RemoveAt (int
index );
}
Returned By
HtmlTable.Rows