Skip to content

Commit 9b80c68

Browse files
GiriSF4292GiriSF4292
authored andcommitted
983076: committed the UG changes based on given prompt
1 parent 75ae242 commit 9b80c68

File tree

15 files changed

+38
-38
lines changed

15 files changed

+38
-38
lines changed

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

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

1010
# Bookmarks in Blazor DocumentEditor Component
1111

12-
Bookmark is a powerful tool that helps you to mark a place in the document to find again easily. You can enter many bookmarks in the document and give each one a unique name to identify easily.
12+
Bookmarks are powerful tools for marking places in a document for easy navigation. Multiple bookmarks can be entered in a document, with each assigned a unique name for easy identification.
1313

14-
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) component provides built-in dialog and using code to add, delete, and navigate bookmarks within the document. To add a bookmark, select a portion of text in the document. After that, jump to the location or add links to it within the document using built-in hyperlink dialog. You can also delete bookmarks from a document.
14+
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) component provides built-in dialog and using code to add, delete, and navigate bookmarks within the document. A bookmark can be added by selecting a portion of text in the document. After that, jump to the location or add links to it within the document using built-in hyperlink dialog. Bookmarks can also be deleted from a document.
1515

1616
N>Bookmark names need to begin with a letter. They can include both numbers and letters, but not spaces. To separate the words, use an underscore. Bookmark names starting with an underscore are called hidden bookmarks. For example, bookmarks generated for table of contents.
1717

18-
You can open the bookmark dialog using Bookmark options in toolbar. You can also explore our [`Blazor Word Processor - Bookmark`](https://blazor.syncfusion.com/demos/document-editor/hyperlinks-and-bookmarks) example to know more about bookmark.
18+
The bookmark dialog can be opened using the "Bookmark" option in the toolbar. Explore the [`Blazor Word Processor - Bookmark`](https://blazor.syncfusion.com/demos/document-editor/hyperlinks-and-bookmarks) example to learn more about bookmarks..
1919

2020

2121
## Add bookmark

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

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

1010
# Clipboard in Blazor DocumentEditor Component
1111

12-
[Blazor Word Processor](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) provides built-in support for clipboard operations such as cut, copy, and paste. You can perform the clipboard operations using keyboard shortcuts, touch, and keyboard interactions. Also, the same functionalities can be invoked programmatically.
12+
[Blazor Word Processor](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) provides built-in support for clipboard operations such as cut, copy, and paste. Clipboard operations can be performed using keyboard shortcuts, touch, and keyboard interactions. Also, the same functionalities can be invoked programmatically.
1313

14-
There is a built-in clipboard (local clipboard) with this Word processor component, which allows the users to perform cut, copy, and paste faster. If you want to use system clipboard instead of local clipboard, turn off the local clipboard by setting the [`EnableLocalPaste`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditor_EnableLocalPaste) to false.
14+
There is a built-in clipboard (local clipboard) with this Word processor component, which allows the users to perform cut, copy, and paste faster. To use the system clipboard instead of the local clipboard, set the [`EnableLocalPaste`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditor_EnableLocalPaste) property to false.
1515

16-
If you need to copy or paste the contents from other applications, use system clipboard. To copy or paste the contents within the Word processor component, use local clipboard.
16+
To copy or paste contents from other applications, the system clipboard should be used. To copy or paste the contents within the Word processor component, use local clipboard.
1717

1818
Let’s see how to invoke each clipboard operations using code.
1919

2020
## Copy
2121

22-
You can copy the selected contents using the [`CopyAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SelectionModule.html#Syncfusion_Blazor_DocumentEditor_SelectionModule_CopyAsync) method as shown in the following code example.
22+
The selected content can be copied using the [`CopyAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SelectionModule.html#Syncfusion_Blazor_DocumentEditor_SelectionModule_CopyAsync) method.
2323

2424
```cshtml
2525
@using Syncfusion.Blazor.DocumentEditor

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Comments in Blazor DocumentEditor Component
1111

12-
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) component allows you to add comments to documents. You can add, navigate and remove comments using code and from the UI.
12+
The [`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) (Document Editor) component allows you to add comments to documents. Comments can be added, navigated, and removed using code or through the UI.
1313

1414
## Add a new comment
1515

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Document Editor has preservation support for all types of fields in an existing
1313

1414
## Adding Fields
1515

16-
You can add a field to the document by using [`InsertFieldAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_InsertFieldAsync_System_String_System_String_) method in [`EditorModule`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html).
16+
A field can be added to the document using the [`InsertFieldAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_InsertFieldAsync_System_String_System_String_) method in the [`EditorModule`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html).
1717

1818
The following example code illustrates how to insert merge field programmatically by providing the field code and field result.
1919

Document-Processing/Word/Word-Processor/blazor/find-and-replace.md

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

1010
# Find and Replace in Blazor DocumentEditor Component
1111

12-
Documents can be long, and you might need to search through the text to find and select specific words, text sequences, sentences, or paragraphs and then replace them with the desired content. This Word processor (DocumentEditor) provides a built-in navigation pane like Microsoft Word on the left of the editor.
12+
In long documents, it may be necessary to search for specific text and replace it with the desired content. This Word processor (DocumentEditor) provides a built-in navigation pane like Microsoft Word on the left of the editor.
1313

14-
You can use the search box at the top of this navigation pane to find all the instances of a specific word or phrase in the document. When you enter a word in the search box and perform search, it highlights all the occurrences of those words in the document and displays them below the search options in the pane. When you click on a search result, the cursor or selection move directly to that location in the document.
14+
The search box at the top of the navigation pane can be used to find all instances of a specific word or phrase. Entering a word in the search box and performing a search highlights all occurrences in the document, which are then displayed in the pane. Clicking a search result moves the cursor directly to that location in the document.
1515

16-
You can open the navigation pane using the `Ctrl+F` shortcut key and close using the `ESC` key.
16+
The navigation pane can be opened using the `Ctrl+F` shortcut key and closed using the `ESC` key.
1717

1818
## Show or hide navigation pane
1919

20-
You can programmatically toggle the visibility of navigation pane using the `ShowOptionsPane()` method.
20+
The visibility of the navigation pane can be toggled programmatically using the `ShowOptionsPane()` method.
2121

2222
```cshtml
2323
@using Syncfusion.Blazor.DocumentEditor

Document-Processing/Word/Word-Processor/blazor/header-footer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ documentation: ug
1515
* Even pages: Used on all even numbered pages in the section.
1616
* Default: Used on all pages of the section, where first or even pages are not applicable or not specified.
1717

18-
You can define this by setting format properties of the corresponding section using the following sample code.
18+
This can be defined by setting the format properties of the corresponding section.
1919

2020
```csharp
2121
//Defines whether different header footer is required for first page of the section
@@ -26,7 +26,7 @@ await container.DocumentEditor.Selection.SectionFormat.SetDifferentOddAndEvenPag
2626

2727
## Go to header footer region
2828

29-
Double click in header or footer region to move the selection into it. You can also do this by using the following code.
29+
Double click in header or footer region to move the selection into it. This can also be done using the following code.
3030

3131
```csharp
3232
await container.DocumentEditor.Selection.GoToHeaderAsync();
@@ -36,7 +36,7 @@ await container.DocumentEditor.Selection.GoToFooterAsync();
3636

3737
## Header and footer distance
3838

39-
You can define the distance of header region content from the top of the page. Refer to the following sample code.
39+
The distance of the header region content from the top of the page can be defined. Refer to the following sample code.
4040

4141
```csharp
4242
await container.DocumentEditor.Selection.SectionFormat.SetHeaderDistanceAsync(36);

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

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

1414
## Enable or disable history
1515

16-
Inject the [`EditorHistory`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorHistoryModule.html) module in your application to provide history preservation functionality for [`DocumentEditor`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html). Refer to the following code example.
16+
Inject the [`EditorHistory`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorHistoryModule.html) module into the application to enable history preservation functionality for the [`DocumentEditor`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html). Refer to the following code example.
1717

1818
```cshtml
1919
@using Syncfusion.Blazor.DocumentEditor
@@ -31,7 +31,7 @@ Inject the [`EditorHistory`](https://help.syncfusion.com/cr/blazor/Syncfusion.Bl
3131
}
3232
```
3333

34-
You can enable or disable history preservation for a document editor instance any time using the `EnableEditorHistory` property. Refer to the following sample code.
34+
History preservation for a Document Editor instance can be enabled or disabled at any time using the `EnableEditorHistory` property. Refer to the following sample code.
3535

3636
```csharp
3737
documentEditor.EnableEditorHistory = true;

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

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

1010
# Images in Blazor DocumentEditor Component
1111

12-
[`Blazor Document Editor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) supports common raster format images like PNG, BMP, JPEG, SVG and GIF. You can insert an image file or online image in the document using the [`InsertImageAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_InsertImageAsync_System_String_System_Nullable_System_Double__System_Nullable_System_Double__) method.
12+
[`Blazor Document Editor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) supports common raster format images like PNG, BMP, JPEG, SVG and GIF. An image file or online image can be inserted into the document using the [`InsertImageAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.EditorModule.html#Syncfusion_Blazor_DocumentEditor_EditorModule_InsertImageAsync_System_String_System_Nullable_System_Double__System_Nullable_System_Double__) method.
1313

1414
```csharp
1515
await container.DocumentEditor.Editor.InsertImageAsync("<<base64String>>");
@@ -19,7 +19,7 @@ Image files will be internally converted to base64 string. Whereas, online image
1919

2020
## Image resizing
2121

22-
Document editor provides built-in image resizer that can be injected into your application based on the requirements. This allows you to resize the image by dragging the resizing points using mouse or touch interactions. This resizer appears as follows.
22+
Document editor provides built-in image resizer that can be injected into your application based on the requirements. This allows the image to be resized by dragging the resizing points using mouse or touch interactions. This resizer appears as follows.
2323

2424
![Image Resizing in Blazor DocumentEditor](images/blazor-document-editor-image-resizing.jpeg)
2525

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Lists are a fundamental feature for organizing content in a document, making it
1313

1414
## Creating Lists via the UI
1515

16-
The simplest way to create a list is by using the **Bullets** and **Numbering** buttons in the toolbar. Select the paragraphs you want to format and click the corresponding button to apply the default list style.
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.
1717

1818
## Managing Lists Programmatically
1919

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documentation: ug
1313

1414
## Indentation
1515

16-
Indentation is used to adjust the distance between the paragraph and the page margins. You can modify the left or right indentation of selected paragraphs using the following sample code.
16+
Indentation is used to adjust the distance between the paragraph and the page margins. The left or right indentation of selected paragraphs can be modified using the following sample code.
1717

1818
```csharp
1919
await documentEditor.Selection.ParagraphFormat.SetLeftIndentAsync(24);
@@ -22,31 +22,31 @@ await documentEditor.Selection.ParagraphFormat.SetRightIndentAsync(24);
2222

2323
## Special indentation
2424

25-
You can define special indent for first line of the paragraph using the following sample code.
25+
A special indent for the first line of the paragraph can be defined using the following sample code.
2626

2727
```csharp
2828
await documentEditor.Selection.ParagraphFormat.SetFirstLineIndentAsync(24);
2929
```
3030

3131
## Increase indent
3232

33-
You can increase the left indent of selected paragraphs by a factor of 36 points using the following sample code.
33+
The left indent of selected paragraphs can be increased by a factor of 36 points using the following sample code.
3434

3535
```csharp
3636
await documentEditor.Editor.IncreaseIndentAsync();
3737
```
3838

3939
## Decrease indent
4040

41-
You can decrease the left indent of selected paragraphs by a factor of 36 points using the following sample code.
41+
The left indent of selected paragraphs can be decreased by a factor of 36 points using the following sample code.
4242

4343
```csharp
4444
await documentEditor.Editor.DecreaseIndentAsync();
4545
```
4646

4747
## Text alignment
4848

49-
You can get or set the text alignment of selected paragraphs using the following sample code.
49+
The text alignment of selected paragraphs can be retrieved or set using the following sample code.
5050

5151
```csharp
5252
await documentEditor.Selection.ParagraphFormat.SetTextAlignmentAsync(TextAlignment.Center);

0 commit comments

Comments
 (0)