HScrollBar() Constructor
Creates a new HScrollBar object.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
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);
See Also