DataGridViewRowCollection Methods
.NET Framework 4.5
The DataGridViewRowCollection type exposes the following members.
| Name | Description | |
|---|---|---|
|
Add() | Adds a new row to the collection. |
|
Add(DataGridViewRow) | Adds the specified DataGridViewRow to the collection. |
|
Add(Int32) | Adds the specified number of new rows to the collection. |
|
Add(Object[]) | Adds a new row to the collection, and populates the cells with the specified objects. |
|
AddCopies | Adds the specified number of rows to the collection based on the row at the specified index. |
|
AddCopy | Adds a new row based on the row at the specified index. |
|
AddRange | Adds the specified DataGridViewRow objects to the collection. |
|
Clear | Clears the collection. |
|
Contains | Determines whether the specified DataGridViewRow is in the collection. |
|
CopyTo | Copies the items from the collection into the specified DataGridViewRow array, starting at the specified index. |
|
Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetFirstRow(DataGridViewElementStates) | Returns the index of the first DataGridViewRow that meets the specified criteria. |
|
GetFirstRow(DataGridViewElementStates, DataGridViewElementStates) | Returns the index of the first DataGridViewRow that meets the specified inclusion and exclusion criteria. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetLastRow | Returns the index of the last DataGridViewRow that meets the specified criteria. |
|
GetNextRow(Int32, DataGridViewElementStates) | Returns the index of the next DataGridViewRow that meets the specified criteria. |
|
GetNextRow(Int32, DataGridViewElementStates, DataGridViewElementStates) | Returns the index of the next DataGridViewRow that meets the specified inclusion and exclusion criteria. |
|
GetPreviousRow(Int32, DataGridViewElementStates) | Returns the index of the previous DataGridViewRow that meets the specified criteria. |
|
GetPreviousRow(Int32, DataGridViewElementStates, DataGridViewElementStates) | Returns the index of the previous DataGridViewRow that meets the specified inclusion and exclusion criteria. |
|
GetRowCount | Returns the number of DataGridViewRow objects in the collection that meet the specified criteria. |
|
GetRowsHeight | Returns the cumulative height of the DataGridViewRow objects that meet the specified criteria. |
|
GetRowState | Gets the state of the row with the specified index. |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
IndexOf | Returns the index of a specified item in the collection. |
|
Insert(Int32, Int32) | Inserts the specified number of rows into the collection at the specified location. |
|
Insert(Int32, Object[]) | Inserts a row into the collection at the specified position, and populates the cells with the specified objects. |
|
Insert(Int32, DataGridViewRow) | Inserts the specified DataGridViewRow into the collection. |
|
InsertCopies | Inserts rows into the collection at the specified position. |
|
InsertCopy | Inserts a row into the collection at the specified position, based on the row at specified position. |
|
InsertRange | Inserts the DataGridViewRow objects into the collection at the specified position. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
OnCollectionChanged | Raises the CollectionChanged event. |
|
Remove | Removes the row from the collection. |
|
RemoveAt | Removes the row at the specified position from the collection. |
|
SharedRow | Returns the DataGridViewRow at the specified index. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
|
ICollection.CopyTo | Copies the elements of the collection to an Array, starting at the specified index. |
|
IEnumerable.GetEnumerator | Returns an enumerator that iterates through the collection. |
|
IList.Add | Adds a DataGridViewRow to the collection. |
|
IList.Clear | Removes all items from the collection. |
|
IList.Contains | Determines whether the collection contains the specified item. |
|
IList.IndexOf | Returns the index of a specified item in the collection. |
|
IList.Insert | Inserts a DataGridViewRow into the collection at the specified index. |
|
IList.Remove | Removes the specified DataGridViewRow from the collection. |
|
IList.RemoveAt | Removes the DataGridViewRow from the collection at the specified position. |