DataGridView.FirstDisplayedScrollingRowIndex Property

Definition

Gets or sets the index of the row that is the first row displayed on the DataGridView.

public:
 property int FirstDisplayedScrollingRowIndex { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int FirstDisplayedScrollingRowIndex { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.FirstDisplayedScrollingRowIndex : int with get, set
Public Property FirstDisplayedScrollingRowIndex As Integer

Property Value

The index of the row that is the first row displayed on the DataGridView.

Attributes

Exceptions

The specified value when setting this property is less than 0 or greater than the number of rows in the control minus 1.

The specified value when setting this property indicates a row with a Visible property value of false.

-or-

The specified value when setting this property indicates a column with a Frozen property value of true.

Remarks

Setting this property raises the Scroll event.

Applies to

See also