System.Web 1.0.5000.0 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. System.Object System.Collections.ICollection Use the class to programmatically manage a collection of objects that represent the rows in an control. This class is commonly used to add, remove, or modify the contents of a row in an control. An control contains a property that represents a collection of objects. Each represents an individual row in the table. An contains a property that represents a collection of objects. These objects, in turn, represent the individual cells of the table. To retrieve an individual cell, first get the object, representing the row containing the cell, from the collection of the control. You can then get the object, representing the cell in the row, from the collection of the . A collection of objects that represent the rows of an control. This class cannot be inherited. Method System.Void Use this method to add the specified object to the end of an collection. To insert an in the middle of the collection, use the method. Appends the specified object to the end of the collection. The to add to the collection. 1.0.5000.0 2.0.0.0 Method System.Void Use this method to remove all objects from the collection and reset the property to 0. Removes all objects from the collection. 1.0.5000.0 2.0.0.0 Method System.Void Use this method to copy the contents of the collection into the specified object, starting at the specified index in the array. The parameter must be a zero-based . Copies the items from the collection to the specified object, starting at the specified index in the array. A zero-based that receives the copied items from the . The first index in the specified array to receive the items. 1.0.5000.0 2.0.0.0 Property System.Int32 To be added: an object of type 'int' Use the property to determine the number of rows contained in the collection. The property is commonly used when iterating through the collection to determine the upper bound. Gets the number of objects in the collection. 1.0.5000.0 2.0.0.0 Method System.Collections.IEnumerator Use this method to create an -implemented object that can be iterated through to get each item in the collection. Use the property to get the current element in the collection. Use the method to move to the next item in the collection. Use the method to move the enumerator to the initial position. You must call the method after creating an -implemented object, or after using the method to move the enumerator to the first item in the collection. Otherwise, the item represented by the property is undefined. Returns an -implemented object that contains all objects in the collection. An -implemented object that contains all objects in the . 1.0.5000.0 2.0.0.0 Method System.Void Use the method to add the specified object to an collection at the specified index. If you simply want to append an to the end of the collection, use the method. Adds an object to the specified location in the collection. The location in the at which to add the . The to add to the . 1.0.5000.0 2.0.0.0 Property System.Boolean To be added: an object of type 'bool' This property always returns false to indicate that the collection can be written to in all cases. Gets a value indicating whether the collection is read-only. 1.0.5000.0 2.0.0.0 Property System.Boolean To be added: an object of type 'bool' This property is derived from and is overridden to always return false to indicate that access to the collection is not synchronized (not thread safe). For more information on the property, see the property of the interface. Gets a value indicating whether access to the collection is synchronized (thread safe). 1.0.5000.0 2.0.0.0 Property System.Web.UI.HtmlControls.HtmlTableRow To be added. To be added. To be added. To be added. 1.0.5000.0 2.0.0.0 Method System.Void Use this method to remove the specified object from the collection. If you specify an that does not exist in the , no item is removed from the collection. Removes the specified object from the collection. The to remove from the . 1.0.5000.0 2.0.0.0 Method System.Void Use this method to remove the object at the specified index from the collection. The index number is zero-based. Therefore, the first item in the collection has an index value of 0. If you specify an index that is outside the range of index values, an exception is raised. Removes the object at the specified index from the collection. The index of the to remove from the . 1.0.5000.0 2.0.0.0 Property System.Object To be added: an object of type 'object' The object returned in this implementation is the current instance of the class. For more information on the property, see the property of the interface. Gets the object that can be used to synchronize access to the collection. 1.0.5000.0 2.0.0.0