Class ListLevelCollection
- Namespace
- GrapeCity.Documents.Word
- Assembly
- GcDocs.Word.dll
Represents a collection of list formatting for each level in a list.
public class ListLevelCollection : IReadOnlyList<ListLevel>, IReadOnlyCollection<ListLevel>, IEnumerable<ListLevel>, IEnumerable
- Inheritance
-
object
ListLevelCollection
- Implements
-
System.Collections.Generic.IReadOnlyList<T><
ListLevel>
System.Collections.Generic.IReadOnlyCollection<T><
ListLevel>
System.Collections.Generic.IEnumerable<T><
ListLevel>
System.Collections.IEnumerable
- Inherited Members
-
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Properties
Count
Gets the number of levels in this list.
A list can contain either 1 or 9 levels.
public int Count { get; }
Property Value
- int
this[int]
Gets a list level by its index.
public ListLevel this[int index] { get; }
Parameters
index
int
The level index.
Property Value
- ListLevel
The ListLevel with the specified index.