Wisej.Web.DataGridViewSelectedRowCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Represents a collection of DataGridViewRow objects that are selected in a DataGridView.
Int32: Returns the number of elements in the collection.
DataGridViewRow: Returns the row at the specified index.
Throws:
ArgumentOutOfRangeException index is less than 0; or index is equal to or greater than the number of rows in the collection.
Determines whether the specified row is contained in the collection.
Returns: Boolean. true if row is in the collection; otherwise, false.
Copies the elements of the collection to the specified array, starting at the specified index.
Throws:
ArgumentNullException array is null.
ArgumentOutOfRangeException index is less than zero.
ArgumentException array is multidimensional; or the number of elements in the DataGridViewSelectedRowCollection is greater than the available space from index to the end of array .
InvalidCastException The DataGridViewSelectedRowCollection cannot be cast automatically to the type of array .
Returns the index of the specified element.
Returns: Int32. The zero-based index of the row parameter if it is found in the collection; otherwise, -1.
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
row
The DataGridViewRow to locate in the DataGridViewSelectedRowCollection.
array
The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.
index
The zero-based index in the array at which copying begins.
row
The DataGridViewRow to locate in the collection.