DataGridView.ScrollBars Property

Definition

Gets or sets the type of scroll bars to display for the DataGridView control.

public:
 property System::Windows::Forms::ScrollBars ScrollBars { System::Windows::Forms::ScrollBars get(); void set(System::Windows::Forms::ScrollBars value); };
public System.Windows.Forms.ScrollBars ScrollBars { get; set; }
member this.ScrollBars : System.Windows.Forms.ScrollBars with get, set
Public Property ScrollBars As ScrollBars

Property Value

One of the ScrollBars values. The default is Both.

Exceptions

The specified value when setting this property is not a valid ScrollBars value.

The value of this property cannot be set because the DataGridView is unable to scroll due to a cell change that cannot be committed or canceled.

Remarks

Regardless of the value of this property, scroll bars are shown only when they are needed. Use this property to prevent scroll bars from appearing. This is useful, for example, when you want to provide an alternative user interface (UI) for scrolling.

Applies to

See also