PathStopCollection
Stores PathStop objects that are used for Opacity, Skew, and Scale effects of the RadCarouselPanel.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
public class PathStopCollection : Animatable, IList, ICollection, IList<PathStop>, ICollection<PathStop>, IEnumerable<PathStop>, IEnumerable
Inheritance: objectPathStopCollection
Implements:
Constructors
Initializes a new instance of the PathStopCollection class.
public PathStopCollection()
Properties
Gets the number of elements contained in the ICollection.
public int Count { get; }
Implements:
Gets a value indicating whether the IList has a fixed size.
public virtual bool IsFixedSize { get; }
Gets a value indicating whether the ICollection<T> is read-only.
public bool IsReadOnly { get; }
Implements:
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
public bool IsSynchronized { get; }
Implements:
Gets an object that can be used to synchronize access to the ICollection.
public object SyncRoot { get; }
Implements:
Methods
Adds an item to the ICollection<T>.
public void Add(PathStop item)
The object to add to the ICollection<T>.
Exceptions:The ICollection<T> is read-only.
Implements:
Removes all items from the IList.
Makes the instance a clone (deep copy) of the specified Freezable using base (non-animated) property values.
protected override void CloneCore(Freezable sourceFreezable)
The object to clone.
Makes the instance a modifiable clone (deep copy) of the specified Freezable using current property values.
protected override void CloneCurrentValueCore(Freezable sourceFreezable)
The Freezable to be cloned.
Determines whether the ICollection<T> contains a specific value.
public bool Contains(PathStop item)
The object to locate in the ICollection<T>.
Returns:True if item is found in the ICollection<T>; otherwise, false.
Implements:
Copies the elements of the ICollection to an Array, starting at a particular Array index.
public void CopyTo(Array array, int index)
The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.
indexintThe zero-based index in array at which copying begins.
array is null.
index is less than zero.
array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source ICollection is greater than the available space from index to the end of the destination array.
The type of the source ICollection cannot be cast automatically to the type of the destination array.
Implements:
Copies the elements of the ICollection<T> to an Array, starting at a particular Array index.
public void CopyTo(PathStop[] array, int arrayIndex)
The one-dimensional Array that is the destination of the elements copied from ICollection<T>. The Array must have zero-based indexing.
arrayIndexintThe zero-based index in array at which copying begins.
array is null.
arrayIndex is less than 0.
array is multidimensional.-or-arrayIndex is equal to or greater than the length of array.-or-The number of elements in the source ICollection<T> is greater than the available space from arrayIndex to the end of the destination array.
Implements:
CreateInstanceCore()
Freezable
When implemented in a derived class, creates a new instance of the Freezable derived class.
protected override Freezable CreateInstanceCore()
Freezable
The new instance.
Makes this object non-modifiable or determines whether it can be made non-modifiable.
protected override bool FreezeCore(bool isChecking)
True if this method should simply determine whether this instance can be frozen. false if this instance should actually freeze itself when this method is called.
Returns:If isChecking is true, this method returns true if this can be made non-modifiable, or false if it cannot be made non-modifiable. If isChecking is false, this method returns true if the if this is now non-modifiable, or false if it cannot be made non-modifiable, with the side effect of having begun to change the frozen status of this object.
Makes the instance a frozen clone of the specified Freezable using base (non-animated) property values.
protected override void GetAsFrozenCore(Freezable sourceFreezable)
The instance to copy.
Makes the current instance a frozen clone of the specified Freezable. If the object has animated dependency properties, their current animated values are copied.
protected override void GetCurrentValueAsFrozenCore(Freezable sourceFreezable)
The Freezable to copy and freeze.
Returns an enumerator that iterates through the collection.
public IEnumerator<PathStop> GetEnumerator()
A IEnumerator<T> that can be used to iterate through the collection.
Implements:
Inserts an item to the IList<T> at the specified index.
Called when the current Freezable object is modified.
protected override void OnChanged()
Removes the first occurrence of a specific object from the ICollection<T>.
public bool Remove(PathStop item)
The object to remove from the ICollection<T>.
Returns:True if item was successfully removed from the ICollection<T>; otherwise, false. This method also returns false if item is not found in the original ICollection<T>.
The ICollection<T> is read-only.
Implements: