DataGridViewRowCollection.Item[Int32] Property

Definition

Gets the DataGridViewRow at the specified index.

public:
 property System::Windows::Forms::DataGridViewRow ^ default[int] { System::Windows::Forms::DataGridViewRow ^ get(int index); };
public System.Windows.Forms.DataGridViewRow this[int index] { get; }
member this.Item(int) : System.Windows.Forms.DataGridViewRow
Default Public ReadOnly Property Item(index As Integer) As DataGridViewRow

Parameters

index
Int32

The zero-based index of the DataGridViewRow to get.

Property Value

The DataGridViewRow at the specified index. Accessing a DataGridViewRow with this indexer causes the row to become unshared. To keep the row shared, use the SharedRow(Int32) method. For more information, see Best Practices for Scaling the Windows Forms DataGridView Control.

Exceptions

index is less than 0.

-or-

index is equal to or greater than Count.

Applies to

See also