ClassListLevelCollection
Class
Manages a fixed collection of 9 list levels (indexed 0-8) that define formatting for each hierarchy level in a list.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Lists
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
cs-api-definition
public sealed class ListLevelCollection : IEnumerable<ListLevel>, IEnumerable
Inheritance: objectListLevelCollection
Implements:
Properties
Count
Gets the number of list levels in this collection, which is always 9.
this[int]
Gets or sets the list level at the specified index (0-8), allowing customization of formatting for each hierarchy level.
Declaration
cs-api-definition
public ListLevel this[int index] { get; set; }
Parameters
index
The index.
Property Value
Exceptions
index is less then 0 and greater then 8.
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
cs-api-definition
public IEnumerator<ListLevel> GetEnumerator()
Returns
A IEnumerator<T> that can be used to iterate through the collection.
Implements