Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridView::ScrollBars Property

 

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

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property ScrollBars ScrollBars {
	ScrollBars get();
	void set(ScrollBars value);
}

Property Value

Type: System.Windows.Forms::ScrollBars

One of the ScrollBars values. The default is Both.

Exception Condition
InvalidEnumArgumentException

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

InvalidOperationException

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.

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.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft