DataGridViewCellCollection Properties
.NET Framework 4.5
The DataGridViewCellCollection type exposes the following members.
| Name | Description | |
|---|---|---|
|
Count | Gets the total number of elements in the collection. (Inherited from BaseCollection.) |
|
IsReadOnly | Gets a value indicating whether the collection is read-only. (Inherited from BaseCollection.) |
|
IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized. (Inherited from BaseCollection.) |
|
Item[Int32] | Gets or sets the cell at the provided index location. In C#, this property is the indexer for the DataGridViewCellCollection class. |
|
Item[String] | Gets or sets the cell in the column with the provided name. In C#, this property is the indexer for the DataGridViewCellCollection class. |
|
List | Gets an ArrayList containing DataGridViewCellCollection objects. (Overrides BaseCollection.List.) |
|
SyncRoot | Gets an object that can be used to synchronize access to the BaseCollection. (Inherited from BaseCollection.) |
| Name | Description | |
|---|---|---|
|
ICollection.Count | Gets the number of elements contained in the collection. |
|
ICollection.IsSynchronized | Infrastructure. Gets a value indicating whether access to the collection is synchronized (thread safe). |
|
ICollection.SyncRoot | Infrastructure. Gets an object that can be used to synchronize access to the collection. |
|
IList.IsFixedSize | Infrastructure. Gets a value indicating whether the collection has a fixed size. |
|
IList.IsReadOnly | Infrastructure. Gets a value indicating whether the collection has a fixed size. |
|
IList.Item | Infrastructure. Gets or sets the element at the specified index. |