Class
ListLevelCollection

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: IEnumerableIEnumerable<ListLevel>

Properties

Count

Gets the number of list levels in this collection, which is always 9.

Declaration

cs-api-definition
public int Count { get; }

Property Value

int

The count.

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

int

The index.

Property Value

ListLevel

Exceptions

ArgumentOutOfRangeException

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

IEnumerator<ListLevel>

A IEnumerator<T> that can be used to iterate through the collection.

Implements IEnumerable<ListLevel>.GetEnumerator()