You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Document-Processing/Word/Word-Processor/blazor/list-format.md
+1-23Lines changed: 1 addition & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,6 @@ documentation: ug
11
11
12
12
Lists are a fundamental feature for organizing content in a document, making it easier for readers to follow step-by-step instructions or grasp key points. The [Blazor Word Processor](https://www.syncfusion.com/blazor-components/blazor-word-processor) (Document Editor) provides comprehensive support for single-level and multilevel lists, which can be either ordered (numbered) or unordered (bulleted).
13
13
14
-
## Creating Lists via the UI
15
-
16
-
The simplest way to create a list is by using the **Bullets** and **Numbering** buttons in the toolbar. To format paragraphs as a list, select them and click the corresponding button to apply the default list style.
17
-
18
-
## Managing Lists Programmatically
19
-
20
-
The Document Editor also provides a complete set of APIs for creating and manipulating lists in code.
21
-
22
14
### Create a Bulleted List
23
15
24
16
Bulleted (unordered) lists are ideal for items that do not need to be in a specific sequence. Use the `ApplyBulletAsync` method to apply a bullet format to the selected paragraphs. The method accepts a bullet character and its font family.
@@ -44,21 +36,7 @@ The `numberFormat` parameter uses placeholders like `%1`, `%2`, etc., which corr
To create a multilevel list, you can increase or decrease the indent of list items. This is typically done by applying a base list format and then promoting or demoting specific items.
50
-
51
-
Use the `IncreaseIndentAsync` and `DecreaseIndentAsync` methods to change the level of a list item.
0 commit comments