Version

UltraTrackBar Constructor

Initializes a new instance of the control.
Syntax
'Declaration
 
Public Function New()
public UltraTrackBar()
Example
Imports Infragistics.Win.UltraWinEditors

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        Dim trackBar As UltraTrackBar = New UltraTrackBar()
        Me.Controls.Add(trackBar)
        trackBar.Location = New Point(10, 10)

    End Sub
using Infragistics.Win.UltraWinEditors;

        private void Form1_Load(object sender, EventArgs e)
        {
            UltraTrackBar trackBar = new UltraTrackBar();
            this.Controls.Add(trackBar);
            trackBar.Location = new Point(10,10);            
        }
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also