Wimark.Controls Class Library  

DataGridViewRow.DataGridViewCellCollection.Item Property

Gets or sets the cell in the collection with the provided column name.

[C#] In C#, this property is the indexer for the DataGridViewRow.DataGridViewCellCollection class.

Overload List

Gets or sets the cell object at the specified indexed location in the collection.

[Visual Basic] Overloads Public Property Item(Integer) As DataGridViewCell
[C#] public DataGridViewCell this[int] {get; set;}
[C++] public: __property DataGridViewCell* get_Item(int);
public: __property void set_Item(int, DataGridViewCell*);

Gets or sets the cell in the collection with the provided column name.

[Visual Basic] Overloads Public Property Item(String) As DataGridViewCell
[C#] public DataGridViewCell this[string] {get; set;}
[C++] public: __property DataGridViewCell* get_Item(String*);
public: __property void set_Item(String*, DataGridViewCell*);

See Also

DataGridViewRow.DataGridViewCellCollection Class | DataGridViewRow.DataGridViewCellCollection Members | Wimark.Controls Namespace