DataGridView.FirstDisplayedScrollingColumnIndex Property

Definition

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

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

Property Value

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

Attributes

Exceptions

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

The specified value when setting this property indicates a column 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.

Applies to

See also