| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* System.Web.UI.HtmlControls
- * Authors
- * Leen Toelen ([email protected])
- */
- using System;
- using System.Web;
- using System.Web.UI;
- using System.Collections;
- namespace System.Web.UI.HtmlControls{
- public sealed class HtmlTableRowCollection : ICollection {
-
- private HtmlTable _owner;
-
- internal HtmlTableRowCollection(HtmlTable owner){
- _owner = owner;
- }
-
- public void Add(HtmlTableRow row){
- Insert(-1, row);
- }
-
- public void Clear(){
- if (_owner.HasControls()) _owner.Controls.Clear();
- }
-
- public void CopyTo(Array array, int index){
- IEnumerator tablerow = this.GetEnumerator();
- while (tablerow.MoveNext()){
- index = index + 1;
- array.SetValue(tablerow.Current, index);
- }
- }
-
- public IEnumerator GetEnumerator(){
- return _owner.Controls.GetEnumerator();
- }
-
- public void Insert(int index, HtmlTableRow row){
- _owner.Controls.AddAt(index,row);
- }
-
- public void Remove(HtmlTableRow row){
- _owner.Controls.Remove(row);
- }
-
- public void RemoveAt(int index){
- _owner.Controls.RemoveAt(index);
- }
-
- public int Count {
- get{
- if (_owner.HasControls()) return _owner.Controls.Count;
- return 0;
- }
- }
-
- public bool IsReadOnly {
- get{
- return false;
- }
- }
-
- public bool IsSynchronized {
- get{
- return false;
- }
- }
-
- public HtmlTableRow this[int index] {
- get{
- return (HtmlTableRow) _owner.Controls[index];
- }
- }
-
- public object SyncRoot {
- get{
- return this;
- }
- }
- }//System.Web.UI.HtmlControls.HtmlTableRowCollection
- }
|