About Progress

  • Company
    • Company Overview
    • Leadership
    • Corporate Social Responsibility
    • Investor Relations
    • Press Releases
    • Press Coverage
    • Recognitions
    • Progress Labs
    • Events
    • Customers
    • Careers
    • Offices
  • Technology
    • Cloud Native App Dev Platform
    • Cognitive Services
    • Web Content Management
    • UI/UX Tools
    • Secure Data Connectivity and Integration
    • Secure Managed File Transfer
    • OpenEdge
    • Network Monitoring
  • Services
    • Consulting
    • Education
    • Modernization
    • Outsourcing
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • Conversational UI
    • Online Training
    • Document Processing Library
    Web
    Kendo UI UI for jQuery UI for Angular UI for React UI for Vue UI for ASP.NET AJAX UI for ASP.NET MVC UI for ASP.NET Core UI for Blazor UI for Silverlight UI for PHP UI for JSP
    Mobile
    UI for Xamarin NativeScript OSS framework
    Desktop
    UI for WPF UI for UWP UI for WinForms
    Reporting & Mocking
    Telerik Reporting Telerik Report Server Telerik JustMock
    Automated Testing
    Test Studio Test Studio Dev Edition
    Debugging
    FiddlerCore
    CMS
    Sitefinity
    UX Design
    Unite UX
    Document Management
    Telerik Document Processing
    Innovations Lab
    VR DataViz
    Free Tools
    Fiddler JustAssembly JustDecompile VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Docs & Support
  • Pricing
  • Search
  • Shopping cart
    • Account Overview
    • Edit Profile
    • Payment Profiles
    • Renewals & Upgrades
    • Support Tickets
    • Log out
  • Login
  • Contact Us
  • Try now

Class TrackBarRangeCollection

Represents a collection of TrackBarRange

Inheritance
System.Object
TrackBarRangeCollection
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll

Syntax

public class TrackBarRangeCollection : IList, ICollection, IList<TrackBarRange>, ICollection<TrackBarRange>, IEnumerable<TrackBarRange>, IEnumerable, INotifyPropertyChanged

Constructors

TrackBarRangeCollection(RadTrackBarElement)

Declaration
public TrackBarRangeCollection(RadTrackBarElement owner)
Parameters
RadTrackBarElement owner

Properties

Count

Gets the number of elements contained in the Collection

Declaration
public int Count { get; }
Property Value
System.Int32

Implements
System.Collections.ICollection.Count
System.Collections.Generic.ICollection<T>.Count

IsReadOnly

Gets a value indicating whether the Collection is read-only.

Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean

Implements
System.Collections.IList.IsReadOnly
System.Collections.Generic.ICollection<T>.IsReadOnly

Item[Int32]

Gets or sets the Range at the specified index.

Declaration
public TrackBarRange this[int index] { get; set; }
Parameters
System.Int32 index

index

Property Value
TrackBarRange

TrackBarRange

Implements
System.Collections.Generic.IList<T>.Item[System.Int32]

Item[String]

Gets or sets the Range at the specified name.

Declaration
public TrackBarRange this[string text] { get; }
Parameters
System.String text

text

Property Value
TrackBarRange

TrackBarRange

Maximum

Gets or Sets a maximum value for the trackbar position

Declaration
public float Maximum { get; set; }
Property Value
System.Single

Minimum

Gets or Sets a minimum value for the trackbar position

Declaration
public float Minimum { get; set; }
Property Value
System.Single

Mode

Gets or Sets the Mode of the TrackBar

Declaration
public TrackBarRangeMode Mode { get; set; }
Property Value
TrackBarRangeMode

Owner

Gets the RadTrackBarElement which owns this collection

Declaration
public RadTrackBarElement Owner { get; }
Property Value
RadTrackBarElement

Methods

Add(TrackBarRange)

Add range to the System.Collections.Generic.ICollection

Declaration
public void Add(TrackBarRange item)
Parameters
TrackBarRange item

item

Implements
System.Collections.Generic.ICollection<T>.Add(T)

CheckThumbMove(Single, Boolean, TrackBarRange)

Check thumb move.

Declaration
public bool CheckThumbMove(float value, bool isStart, TrackBarRange range)
Parameters
System.Single value

value

System.Boolean isStart

isStart

TrackBarRange range

range

Returns
System.Boolean

bool

Clear()

Removes all items except the first from the System.Collections.Generic.ICollection

Declaration
public void Clear()
Implements
System.Collections.IList.Clear()
System.Collections.Generic.ICollection<T>.Clear()

Contains(TrackBarRange)

Determines whether the System.Collections.Generic.ICollection contains a specific value.

Declaration
public bool Contains(TrackBarRange item)
Parameters
TrackBarRange item

Returns
System.Boolean

bool

Implements
System.Collections.Generic.ICollection<T>.Contains(T)

CopyTo(TrackBarRange[], Int32)

Copies the elements of the System.Collections.Generic.ICollection to an System.Array, starting at a particular System.Array index.

Declaration
public void CopyTo(TrackBarRange[] array, int arrayIndex)
Parameters
TrackBarRange[] array

array

System.Int32 arrayIndex

arrayIndex

Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)

GetEnumerator()

Returns an enumerator that iterates through the collection.

Declaration
public IEnumerator<TrackBarRange> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<TrackBarRange>

IEnumerator

Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

IndexOf(TrackBarRange)

Determines the index of a specific item in the Collection

Declaration
public int IndexOf(TrackBarRange item)
Parameters
TrackBarRange item

item

Returns
System.Int32

int

Implements
System.Collections.Generic.IList<T>.IndexOf(T)

Insert(Int32, TrackBarRange)

Inserts an item to the Collections at the specified index.

Declaration
public void Insert(int index, TrackBarRange item)
Parameters
System.Int32 index

index

TrackBarRange item

item

Implements
System.Collections.Generic.IList<T>.Insert(System.Int32, T)

OnCollectionChanged(NotifyCollectionChangedEventArgs)

Declaration
public virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Parameters
NotifyCollectionChangedEventArgs e

OnNotifyPropertyChanged(String)

Declaration
protected virtual void OnNotifyPropertyChanged(string propertyName)
Parameters
System.String propertyName

PerformThumbMove(Single)

Perform Thumb Move in SingleThumb Mode.

Declaration
public bool PerformThumbMove(float value)
Parameters
System.Single value

Value

Returns
System.Boolean

bool

Remove(TrackBarRange)

Removes the first occurrence of a specific object from the Collection.

Declaration
public bool Remove(TrackBarRange item)
Parameters
TrackBarRange item

item

Returns
System.Boolean

bool

Implements
System.Collections.Generic.ICollection<T>.Remove(T)

RemoveAt(Int32)

Removes the TrackBarRange item at the specified index.

Declaration
public void RemoveAt(int index)
Parameters
System.Int32 index

index

Implements
System.Collections.IList.RemoveAt(System.Int32)
System.Collections.Generic.IList<T>.RemoveAt(System.Int32)

ResumeNotifications()

Resumes property and collection notifications.

Declaration
public void ResumeNotifications()

SuspendNotifications()

Suspends all property and collection notifications.

Declaration
public void SuspendNotifications()

Events

CollectionChanged

Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.

Declaration
public event NotifyCollectionChangedEventHandler CollectionChanged
Event Type
NotifyCollectionChangedEventHandler

PropertyChanged

Occurs when a property value changes.

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler

Explicit Interface Implementations

ICollection.CopyTo(Array, Int32)

Copies the elements of the System.Collections.ICollection to an System.Array, starting at a particular System.Array index.

Declaration
void ICollection.CopyTo(Array array, int index)
Parameters
System.Array array

array

System.Int32 index

index

Implements
System.Collections.ICollection.CopyTo(System.Array, System.Int32)

ICollection.IsSynchronized

Gets a value indicating whether access to the System.Collections.ICollection is synchronized (thread safe).

Declaration
bool ICollection.IsSynchronized { get; }
Returns
System.Boolean

Implements
System.Collections.ICollection.IsSynchronized

ICollection.SyncRoot

Gets an object that can be used to synchronize access to the System.Collections.ICollection.

Declaration
object ICollection.SyncRoot { get; }
Returns
System.Object

Implements
System.Collections.ICollection.SyncRoot

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator

Implements
System.Collections.IEnumerable.GetEnumerator()

IList.Add(Object)

Adds an item to the System.Collections.Generic.ICollection.

Declaration
int IList.Add(object value)
Parameters
System.Object value

value

Returns
System.Int32

int

Implements
System.Collections.IList.Add(System.Object)

IList.Contains(Object)

Determines whether the System.Collections.Generic.ICollection contains a specific value.

Declaration
bool IList.Contains(object value)
Parameters
System.Object value

value

Returns
System.Boolean

bool

Implements
System.Collections.IList.Contains(System.Object)

IList.get_Item(Int32)

Declaration
object IList.get_Item(int index)
Parameters
System.Int32 index

Returns
System.Object

Implements
System.Collections.IList.get_Item(System.Int32)

IList.IndexOf(Object)

Determines the index of a specific item in the System.Collections.IList.

Declaration
int IList.IndexOf(object value)
Parameters
System.Object value

value

Returns
System.Int32

int

Implements
System.Collections.IList.IndexOf(System.Object)

IList.Insert(Int32, Object)

Inserts an item to the System.Collections.IList at the specified index.

Declaration
void IList.Insert(int index, object value)
Parameters
System.Int32 index

index

System.Object value

value

Implements
System.Collections.IList.Insert(System.Int32, System.Object)

IList.IsFixedSize

Gets a value indicating whether the System.Collections.IList has a fixed size.

Declaration
bool IList.IsFixedSize { get; }
Returns
System.Boolean

Implements
System.Collections.IList.IsFixedSize

IList.Item[Int32]

Gets or sets the element at the specified index.

Declaration
object IList.this[] { get; set; }
Parameters
System.Int32 index

index

Returns
System.Object

object

Implements
System.Collections.IList.Item[System.Int32]

IList.Remove(Object)

Removes the first occurrence of a specific object from the System.Collections.IList.

Declaration
void IList.Remove(object value)
Parameters
System.Object value

value

Implements
System.Collections.IList.Remove(System.Object)

IList.set_Item(Int32, Object)

Declaration
void IList.set_Item(int index, object value)
Parameters
System.Int32 index

System.Object value

Implements
System.Collections.IList.set_Item(System.Int32, System.Object)

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)

Was this article helpful?

 / 
Tell us how we can improve this article
Skip
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.