Class TrackBarRange
Represents a core range object that contains the start and end.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TrackBarRange : INotifyPropertyChanged, ICloneable, IComponent, IDisposable
Constructors
TrackBarRange()
Declaration
public TrackBarRange()
TrackBarRange(Single)
Declaration
public TrackBarRange(float value)
Parameters
System.Single
value
|
TrackBarRange(Single, Single)
Declaration
public TrackBarRange(float start, float end)
Parameters
System.Single
start
|
System.Single
end
|
TrackBarRange(Single, Single, String)
Declaration
public TrackBarRange(float start, float end, string text)
Parameters
System.Single
start
|
System.Single
end
|
System.String
text
|
TrackBarRange(Single, String)
Declaration
public TrackBarRange(float value, string text)
Parameters
System.Single
value
|
System.String
text
|
Properties
End
Gets or Sets the end of the range.
Declaration
public float End { get; set; }
Property Value
System.Single
|
IsSelected
Gets whether the range contains selected thumb"
Declaration
public bool IsSelected { get; }
Property Value
System.Boolean
|
Owner
Gets the Owner Collection
Declaration
public TrackBarRangeCollection Owner { get; }
Property Value
TrackBarRangeCollection
|
Site
Declaration
public ISite Site { get; set; }
Property Value
System.ComponentModel.ISite
|
Start
Gets or Sets the start of the range.
Declaration
public float Start { get; set; }
Property Value
System.Single
|
Tag
Gets or Sets the Tag.
Declaration
public object Tag { get; set; }
Property Value
System.Object
|
Text
Gets or Sets the Name.
Declaration
public string Text { get; set; }
Property Value
System.String
|
ToolTipText
Gets or Sets the ToolTipText
Declaration
public string ToolTipText { get; set; }
Property Value
System.String
|
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
public object Clone()
Returns
System.Object
|
Implements
Dispose()
Declaration
public void Dispose()
Implements
OnNotifyPropertyChanged(String)
Declaration
protected virtual void OnNotifyPropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
Events
Disposed
Declaration
public event EventHandler Disposed
Event Type
System.EventHandler
|
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|