Skip to main content
A newer version of this page is available. .

HScrollBar() Constructor

Creates a new HScrollBar object.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v19.2.dll

Declaration

public HScrollBar()

Remarks

Use this constructor to create and initialize a new HScrollBar class instance. The constructor initializes the horizontal scroll bar with default settings.

The created horizontal scrollbar should be added to a form’s System.Windows.Forms.Control.Controls collection in order to be displayed on it.

Example

The following sample code demonstrates how to create and place onto a form a new horizontal scroll bar at runtime.

using DevExpress.XtraEditors;
// ...
DevExpress.XtraEditors.HScrollBar hbar = new DevExpress.XtraEditors.HScrollBar();
hbar.Width = 100;
hbar.Top = 20;
hbar.Left = 20;
Controls.Add(hbar);

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HScrollBar() constructor.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also