DataGrid.CurrentRowIndex Property

Definition

Gets or sets index of the row that currently has focus.

[System.ComponentModel.Browsable(false)]
public int CurrentRowIndex { get; set; }

Property Value

The zero-based index of the current row.

Attributes

Exceptions

There is no CurrencyManager.

Examples

The following code example returns the CurrentRowIndex.

private void GetSelectedIndex(DataGrid myGrid){
    Console.WriteLine(myGrid.CurrentRowIndex);
 }
 
 private void SetSelectedIndex(DataGrid myGrid, int selIndex){
    myGrid.CurrentRowIndex = selIndex;
 }

Remarks

Setting the CurrentRowIndex property to a value other than its current value scrolls the control so that the specified row is in view.

The CurrentRowIndex property enables you to iterate through a parent table's rows even if you are viewing the child table rows. For example, if you are viewing a child table, incrementing the CurrentRowIndex will cause the System.Windows.Forms.DataGrid to display the next set of records in the child table that are linked to the parent table.

If the user is viewing a parent table, or a table with no child relations, then the property returns the zero-based index of the current row.

Applies to

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0

See also