[]
Represents a single list template that includes all formatting that defines a list.
public class ListTemplate
Gets the parent document.
public DocumentBase Document { get; }
Gets the unique identifier of the list template.
public int Id { get; }
Gets a value indicating whether the list contains 9 levels, If this property is false, the list contains only 1 level.
public bool IsMultiLevel { get; }
Gets the collection of ListLevel for the list template.
public ListLevelCollection ListLevels { get; }
Gets or sets the name of the list template.
public string Name { get; set; }
Gets a numbering style that this list template uses as the base numbering definition.
public Style StyleDefinition { get; }
Numbering styles are never directly referenced by paragraphs or runs in the document. Instead, a list template specifies that it contains the underlying numbering information for a numbering style. The numbering style itself is just a friendly name on a list template.
Gets a numbering style that serves the actual numbering properties, and which itself points to the actual underlying list template.
public Style StyleReference { get; }