Skip to content

Commit 651fa9e

Browse files
committed
EJ2-983076-UG-2: review changes
1 parent b4a68e3 commit 651fa9e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ documentation: ug
99

1010
# Hyperlink in Blazor DocumentEditor Component
1111

12-
A hyperlink is a reference in a document that links content to another location, such as a web page, an email address, or a bookmark within the same document. The [Blazor Word Processor](https://www.syncfusion.com/blazor-components/blazor-word-processor) (Document Editor) provides comprehensive support for creating, editing, and customizing hyperlinks.
12+
A hyperlink is a reference in a document that links content to another location, such as a web page, an email address, or a bookmark within the same document. The [Blazor Word Processor](https://www.syncfusion.com/blazor-components/blazor-word-processor) provides comprehensive support for creating, editing, and customizing hyperlinks.
1313

1414
## Navigate a hyperlink
1515

16-
By default, clicking a hyperlink navigates to its destination. This behavior can be customized using the `OnRequestNavigate` event.
16+
By default, clicking a hyperlink navigates to its destination. This behavior can be customized using the [`OnRequestNavigate`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorEvents.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorEvents_OnRequestNavigate) event.
1717

1818
This event is triggered when a user `Ctrl+Clicks` a hyperlink, providing details about the link type and destination. You can intercept this action to define custom logic, such as opening the link in a new tab or handling it within your application.
1919

@@ -58,14 +58,14 @@ The following example illustrates how to add OnRequestNavigate event for Documen
5858
}
5959
}
6060
```
61-
You can also programmatically trigger navigation for the hyperlink at the current selection by calling the `NavigateHyperlinkAsync` method.
61+
You can also programmatically trigger navigation for the hyperlink at the current selection by calling the [`NavigateHyperlinkAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SelectionModule.html#Syncfusion_Blazor_DocumentEditor_SelectionModule_NavigateHyperlinkAsync) method.
6262

6363
```csharp
6464
await container.DocumentEditor.Selection.NavigateHyperlinkAsync();
6565
```
6666
## Copy Hyperlink
6767

68-
To copy the destination URL of a hyperlink to the clipboard, use the `CopyHyperlinkAsync` method.
68+
To copy the destination URL of a hyperlink to the clipboard, use the [`CopyHyperlinkAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SelectionModule.html#Syncfusion_Blazor_DocumentEditor_SelectionModule_CopyHyperlinkAsync) method.
6969

7070
```csharp
7171
await container.DocumentEditor.Selection.CopyHyperlinkAsync();
@@ -81,15 +81,15 @@ The Document Editor can automatically format a URL as a hyperlink. Simply type a
8181
* www.
8282
* mail to:
8383

84-
Use the `InsertHyperlinkAsync` method to create a hyperlink at the current selection. You can specify both the destination URL and the display text.
84+
Use the [`InsertHyperlinkAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_InsertHyperlinkAsync_System_String_System_String_) method to create a hyperlink at the current selection. You can specify both the destination URL and the display text.
8585

8686
```csharp
8787
await container.DocumentEditor.Editor.InsertHyperlinkAsync("https://www.google.com", "Google");
8888
```
8989

9090
## Remove Hyperlink
9191

92-
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.
92+
To remove a hyperlink and convert it back to plain text, use the [`RemoveHyperlinkAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_RemoveHyperlinkAsync) method. This can also be done by pressing the `Backspace` key at the end of the hyperlinked text.
9393

9494
```csharp
9595
await container.DocumentEditor.Editor.RemoveHyperlinkAsync();

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ documentation: ug
99

1010
# Working with Lists in Blazor DocumentEditor Component
1111

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).
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) provides comprehensive support for single-level and multilevel lists, which can be either ordered (numbered) or unordered (bulleted).
1313

1414
## Create a Bulleted List
1515

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.
16+
Bulleted (unordered) lists are ideal for items that do not need to be in a specific sequence. Use the [`ApplyBulletAsync(bullet, fontFamily)`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_ApplyBulletAsync_System_String_System_String_) method to apply a bullet format to the selected paragraphs. The method accepts a bullet character and its font family.
1717

1818
|Parameter|Type|Description|
1919
|---------|----|-----------|
@@ -29,7 +29,7 @@ await container.DocumentEditor.Editor.ApplyBulletAsync("\u00B7", "Symbol");
2929

3030
## Create a Numbered List
3131

32-
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.
32+
Numbered (ordered) lists are used for sequential items. Use the [`ApplyNumberingAsync(numberFormat,listLevelPattern)`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_ApplyNumberingAsync_System_String_System_Nullable_Syncfusion_Blazor_DocumentEditor_ListLevelPattern__) method to apply a numbering format. This method allows you to define the number format and the character style for the list level.
3333

3434
The `numberFormat` parameter uses placeholders like `%1`, `%2`, etc., which correspond to the value of each list level. The `ListLevelPattern` specifies the character style for the number (e.g., Arabic numerals, Roman numerals, or letters).
3535

@@ -45,7 +45,7 @@ await container.DocumentEditor.Editor.ApplyNumberingAsync("%1.", ListLevelPatter
4545

4646
## Clear list
4747

48-
To remove all list formatting from a selection of paragraphs and revert them to normal text, use the `ClearListAsync` method.
48+
To remove all list formatting from a selection of paragraphs and revert them to normal text, use the [`ClearListAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_ClearListAsync) method.
4949

5050
```csharp
5151
@* The following code example removes list formatting from the current selection. *@

0 commit comments

Comments
 (0)