Skip to content

Commit b4a68e3

Browse files
committed
EJ2-983076-UG-2: resolved the review changes
1 parent 668c5de commit b4a68e3

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

Document-Processing/Word/Word-Processor/blazor/link.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,20 @@ The following example illustrates how to add OnRequestNavigate event for Documen
5858
}
5959
}
6060
```
61-
6261
You can also programmatically trigger navigation for the hyperlink at the current selection by calling the `NavigateHyperlinkAsync` method.
6362

6463
```csharp
6564
await container.DocumentEditor.Selection.NavigateHyperlinkAsync();
6665
```
67-
### Copy Hyperlink
66+
## Copy Hyperlink
6867

6968
To copy the destination URL of a hyperlink to the clipboard, use the `CopyHyperlinkAsync` method.
7069

7170
```csharp
7271
await container.DocumentEditor.Selection.CopyHyperlinkAsync();
7372
```
7473

75-
### Add Hyperlink
74+
## Add Hyperlink
7675

7776
The Document Editor can automatically format a URL as a hyperlink. Simply type an address and press `ENTER`, `SPACEBAR`, or `TAB`. The text will be converted to a functional hyperlink if it begins with one of the following prefixes:
7877

@@ -88,23 +87,21 @@ Use the `InsertHyperlinkAsync` method to create a hyperlink at the current selec
8887
await container.DocumentEditor.Editor.InsertHyperlinkAsync("https://www.google.com", "Google");
8988
```
9089

91-
### Remove Hyperlink
90+
## Remove Hyperlink
9291

9392
To remove a hyperlink and convert it back to plain text, use the `RemoveHyperlinkAsync` method. This can also be done by pressing the `Backspace` key at the end of the hyperlinked text.
9493

9594
```csharp
9695
await container.DocumentEditor.Editor.RemoveHyperlinkAsync();
9796
```
9897

99-
### Hyperlink Dialog
98+
## Hyperlink Dialog
10099

101100
For more control, the component includes a built-in dialog for inserting and editing hyperlinks. To open it, place the cursor on the desired text and press `Ctrl+K`.
102-
103101
The dialog allows you to:
104102
* Link to an existing web page or file by entering its URL.
105103
* Link to an email address.
106104
* Link to a bookmark within the current document.
107-
108105
You can also open the dialog programmatically:
109106

110107
```csharp

Document-Processing/Word/Word-Processor/blazor/list-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
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).
1313

14-
### Create a Bulleted List
14+
## Create a Bulleted List
1515

1616
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.
1717

@@ -27,7 +27,7 @@ Refer to the following sample code.
2727
await container.DocumentEditor.Editor.ApplyBulletAsync("\u00B7", "Symbol");
2828
```
2929

30-
### Create a Numbered List
30+
## Create a Numbered List
3131

3232
Numbered (ordered) lists are used for sequential items. Use the `ApplyNumberingAsync` method to apply a numbering format. This method allows you to define the number format and the character style for the list level.
3333

0 commit comments

Comments
 (0)