Class ListLevelCollection
Represents collection of list levels.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.Lists
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public sealed class ListLevelCollection : IEnumerable<ListLevel>, IEnumerable
Properties
Count
Gets the count.
Declaration
public int Count { get; }
Property Value
System.Int32
The count. |
Item[Int32]
Gets or sets the list at the specified index.
Declaration
public ListLevel this[int index] { get; set; }
Parameters
System.Int32
index
The index. |
Property Value
ListLevel
|
Exceptions
System.ArgumentOutOfRangeException
|
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<ListLevel> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<ListLevel>
A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
An System.Collections.IEnumerator object that can be used to iterate through the collection. |