Class PathStopCollection
Stores Path
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class PathStopCollection : Animatable, IList, ICollection, IEnumerable, IList<PathStop>, ICollection<PathStop>, IEnumerable<PathStop>
Constructors
PathStopCollection()
Properties
Count
Gets the number of elements contained in the System.
Declaration
public int Count { get; }
Property Value
System.
|
IsFixedSize
Gets a value indicating whether the System.
Declaration
public virtual bool IsFixedSize { get; }
Property Value
System.
|
IsReadOnly
Gets a value indicating whether the System.Collections.Generic.ICollection<> is read-only.
Declaration
public bool IsReadOnly { get; }
Property Value
System.
|
IsSynchronized
Gets a value indicating whether access to the System.
Declaration
public bool IsSynchronized { get; }
Property Value
System.
|
Item[Int32]
Gets or sets the Path
Declaration
public PathStop this[int index] { get; set; }
Parameters
System.
|
Property Value
SyncRoot
Gets an object that can be used to synchronize access to the System.
Declaration
public object SyncRoot { get; }
Property Value
System.
|
Methods
Add(PathStop)
Adds an item to the System.Collections.Generic.ICollection<>.
Declaration
public void Add(PathStop item)
Parameters
Path The object to add to the System.Collections.Generic.ICollection<>. |
Exceptions
System. The System.Collections.Generic.ICollection<> is read-only. |
Clear()
Removes all items from the System.
Declaration
public void Clear()
Exceptions
System. The System. |
CloneCore(Freezable)
Makes the instance a clone (deep copy) of the specified System.
Declaration
protected override void CloneCore(Freezable sourceFreezable)
Parameters
System. The object to clone. |
CloneCurrentValueCore(Freezable)
Makes the instance a modifiable clone (deep copy) of the specified System.
Declaration
protected override void CloneCurrentValueCore(Freezable sourceFreezable)
Parameters
System. The System. |
Contains(PathStop)
Determines whether the System.Collections.Generic.ICollection<> contains a specific value.
Declaration
public bool Contains(PathStop item)
Parameters
Path The object to locate in the System.Collections.Generic.ICollection<>. |
Returns
System. True if |
CopyTo(Array, Int32)
Copies the elements of the System.
Declaration
public void CopyTo(Array array, int index)
Parameters
System. The one-dimensional System. |
System. The zero-based index in |
Exceptions
System.
|
System.
|
System.
|
System. The type of the source System. |
CopyTo(PathStop[], Int32)
Copies the elements of the System.Collections.Generic.ICollection<> to an System.
Declaration
public void CopyTo(PathStop[] array, int arrayIndex)
Parameters
Path The one-dimensional System. |
System. The zero-based index in |
Exceptions
System.
|
System.
|
System.
|
CreateInstanceCore()
When implemented in a derived class, creates a new instance of the System.
Declaration
protected override Freezable CreateInstanceCore()
Returns
System. The new instance. |
FreezeCore(Boolean)
Makes this System.
Declaration
protected override bool FreezeCore(bool isChecking)
Parameters
System. 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
System. If |
GetAsFrozenCore(Freezable)
Makes the instance a frozen clone of the specified System.
Declaration
protected override void GetAsFrozenCore(Freezable sourceFreezable)
Parameters
System. The instance to copy. |
GetCurrentValueAsFrozenCore(Freezable)
Makes the current instance a frozen clone of the specified System.
Declaration
protected override void GetCurrentValueAsFrozenCore(Freezable sourceFreezable)
Parameters
System. The System. |
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<PathStop> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<> that can be used to iterate through the collection. |
IndexOf(PathStop)
Determines the index of a specific item in the System.Collections.Generic.IList<>.
Declaration
public int IndexOf(PathStop item)
Parameters
Path The object to locate in the System.Collections.Generic.IList<>. |
Returns
System. The index of |
Insert(Int32, PathStop)
Inserts an item to the System.Collections.Generic.IList<> at the specified index.
Declaration
public void Insert(int index, PathStop item)
Parameters
System. The zero-based index at which |
Path The object to insert into the System.Collections.Generic.IList<>. |
Exceptions
System.
|
System. The System.Collections.Generic.IList<> is read-only. |
OnChanged()
Called when the current System.
Declaration
protected override void OnChanged()
Remove(PathStop)
Removes the first occurrence of a specific object from the System.Collections.Generic.ICollection<>.
Declaration
public bool Remove(PathStop item)
Parameters
Path The object to remove from the System.Collections.Generic.ICollection<>. |
Returns
System. True if |
Exceptions
System. The System.Collections.Generic.ICollection<> is read-only. |
RemoveAt(Int32)
Removes the System.
Declaration
public void RemoveAt(int index)
Parameters
System. The zero-based index of the item to remove. |
Exceptions
System.
|
System. The System. |