Class ListLevelCollection
Manages a fixed collection of 9 list levels (indexed 0-8) that define formatting for each hierarchy level in a list.
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 number of list levels in this collection, which is always 9.
Declaration
public int Count { get; }
Property Value
|
System.Int32
The count. |
Item[Int32]
Gets or sets the list level at the specified index (0-8), allowing customization of formatting for each hierarchy level.
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. |