ListManager
Class
Class responsible for the lists in RadDocument.
Definition
Namespace:Telerik.WinForms.Documents.Lists
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
public class ListManager
Inheritance: objectListManager
Constructors
Initializes a new instance of the ListManager class.
C#
public ListManager(RadDocument document)
The document the manager will be responsible for.
Methods
Gets all document lists.
C#
public IEnumerable<DocumentList> GetAllDocumentLists()
IEnumerable<DocumentList>
A collection of DocumentList objects.
Gets a document list by identifier.
C#
public DocumentList GetDocumentListById(int id)
The identifier.
Returns:The DocumentList under the specified identifier. If such is not found, the method returns null.