New to Telerik UI for WinFormsStart a free 30-day trial

Represents a core range object that contains the start and end.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class TrackBarRange : INotifyPropertyChanged, ICloneable, IComponent, IDisposable

Inheritance: objectTrackBarRange

Implements: ICloneableIComponentIDisposableINotifyPropertyChanged

Constructors

C#
public TrackBarRange()
C#
public TrackBarRange(float start, float end, string text)
Parameters:startfloatendfloattextstring
C#
public TrackBarRange(float start, float end)
Parameters:startfloatendfloat
C#
public TrackBarRange(float value, string text)
Parameters:valuefloattextstring
C#
public TrackBarRange(float value)
Parameters:valuefloat

Properties

Gets or Sets the end of the range.

C#
public float End { get; set; }

Gets whether the range contains selected thumb"

C#
[Browsable(false)]
public bool IsSelected { get; }

Gets the Owner Collection

C#
[Browsable(false)]
public TrackBarRangeCollection Owner { get; }
C#
[Browsable(false)]
public ISite Site { get; set; }

Implements: IComponent.Site

Gets or Sets the start of the range.

C#
public float Start { get; set; }

Gets or Sets the Tag.

C#
[Browsable(false)]
public object Tag { get; set; }

Gets or Sets the Name.

C#
public string Text { get; set; }

Gets or Sets the ToolTipText

C#
public string ToolTipText { get; set; }

Methods

Creates a new object that is a copy of the current instance.

C#
public object Clone()
Returns:

object

Implements: ICloneable.Clone()

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected virtual void OnNotifyPropertyChanged(string propertyName)
Parameters:propertyNamestring

Events

C#
public event EventHandler Disposed

Implements: IComponent.Disposed

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged