officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-templateabstractnumberinglist.md
Creates a new abstract list based on a template.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
AbstractNumberingList CreateNew()
Function CreateNew As AbstractNumberingList
| Type | Description |
|---|---|
| AbstractNumberingList |
An AbstractNumberingList object that is the abstract list with specified properties.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateNew() method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
word-document-api-insert-dynamic-content/CS/Program.cs#L49
Document document = rssProcessor.Document;
AbstractNumberingList abstractNumberingList = document.AbstractNumberingLists.BulletedListTemplate.CreateNew();
document.NumberingLists.CreateNew(abstractNumberingList.Index);
word-document-api-insert-dynamic-content/VB/Module1.vb#L41
Dim document As Document = rssProcessor.Document
Dim abstractNumberingList As AbstractNumberingList = document.AbstractNumberingLists.BulletedListTemplate.CreateNew()
document.NumberingLists.CreateNew(abstractNumberingList.Index)
See Also
TemplateAbstractNumberingList Interface