Lists Class
Contains members that allow you to manage document lists.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public class Lists :
ElementCollection<List>
Related API Members
The following members return Lists objects:
Remarks
Use the Lists property to access an object of the Lists
type. This object contains methods to create and find lists.
<DxRichEdit @ref="richEdit" />
@code {
DxRichEdit richEdit;
Document documentAPI;
@* ... *@
/* Surround the code that contains an asynchronous operation with a try-catch block to handle
the OperationCanceledException. This exception is thrown when an asynchronous operation is canceled. */
try {
documentAPI = richEdit.DocumentAPI;
@* ... *@
List list = await documentAPI.Lists.CreateAsync(ListType.MultiLevel);
IReadOnlyList<List> allLists = await documentAPI.Lists.GetAllAsync();
@* ... *@
}
catch (OperationCanceledException e) {
Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
}
}
Inheritance
See Also