Version

ViewStyle Property (UltraTrackBar)

Gets or sets the style of the control, which affects default appearances and behavior.
Syntax
'Declaration
 
Public Property ViewStyle As Infragistics.Win.UltraWinEditors.TrackBarViewStyle
public Infragistics.Win.UltraWinEditors.TrackBarViewStyle ViewStyle {get; set;}
Example
Imports Infragistics.Win.UltraWinEditors

        ' Set the ViewStyle to standard. 
        Me.UltraTrackBar1.ViewStyle = TrackBarViewStyle.Standard

        ' Set Orientation to horizontal. 
        Me.UltraTrackBar1.Orientation = Orientation.Horizontal
using Infragistics.Win.UltraWinEditors;

            // Set the ViewStyle to standard. 
            this.ultraTrackBar1.ViewStyle = TrackBarViewStyle.Standard;

            // Set Orientation to horizontal. 
            this.ultraTrackBar1.Orientation = Orientation.Horizontal;
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