Version

UltraTrackBar Class

An editor control that provides functionality to select a value by moving a thumb across a specified range, either through mouse or keyboard interaction.
Syntax
'Declaration
 
Public Class UltraTrackBar 
   Inherits Infragistics.Win.UltraControlBase
   Implements Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IProvidesEmbeddableEditor, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation 
public class UltraTrackBar : Infragistics.Win.UltraControlBase, Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IProvidesEmbeddableEditor, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation  
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