Skip to content

Commit aa75692

Browse files
GiriSF4292GiriSF4292
authored andcommitted
983076: Addressed the CI failures
1 parent 9b80c68 commit aa75692

19 files changed

+26
-26
lines changed

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

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

1212
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. 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.
14+
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (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-
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..
18+
The bookmark dialog can be opened using the "Bookmark" option in the toolbar. Explore the [`Blazor Word Processor - Bookmark`](https://document.syncfusion.com/demos/docx-editor/blazor-server/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ 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. Clipboard operations can be performed 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 (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

1414
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

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

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

1010
# Form Fields 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 provide support for inserting Text, CheckBox, DropDown form fields through in-built toolbar.
12+
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (Document Editor) component provide support for inserting Text, CheckBox, DropDown form fields through in-built toolbar.
1313

1414
![Form Fields](images/toolbar-form-fields.png)
1515

Document-Processing/Word/Word-Processor/blazor/how-to/add-save-button-in-toolbar.md

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

1111
## To add a save button to the existing toolbar in DocumentEditorContainer
1212

13-
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) component allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.CustomToolbarItemModel.html) and with existing items in [`toolbarItems`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditorContainer.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditorContainer_ToolbarItems) property. Newly added item click action can be defined in [`toolbarClick`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorContainerEvents.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorContainerEvents_OnToolbarClick).
13+
[`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (Document Editor) component allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.CustomToolbarItemModel.html) and with existing items in [`toolbarItems`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditorContainer.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditorContainer_ToolbarItems) property. Newly added item click action can be defined in [`toolbarClick`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorContainerEvents.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorContainerEvents_OnToolbarClick).
1414

1515
```csharp
1616
<SfDocumentEditorContainer @ref="container" EnableToolbar=true ToolbarItems="@Items">

Document-Processing/Word/Word-Processor/blazor/how-to/auto-save-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ In this article, we are going to see how to auto save the document to server. Yo
1212

1313
The following example illustrates how to auto save the document in server.
1414

15-
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as Docx format to server-side using [`SaveAsBlobAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditor_SaveAsBlobAsync_System_Nullable_Syncfusion_Blazor_DocumentEditor_FormatType__) method.
15+
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as DOCX format to server-side using [`SaveAsBlobAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.SfDocumentEditor.html#Syncfusion_Blazor_DocumentEditor_SfDocumentEditor_SaveAsBlobAsync_System_Nullable_Syncfusion_Blazor_DocumentEditor_FormatType__) method.
1616

1717
```cshtml
1818
@using Syncfusion.Blazor.DocumentEditor

Document-Processing/Word/Word-Processor/blazor/how-to/change-document-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Change Document View Type in Blazor DocumentEditor
3+
title: Change Document View Type in Blazor DocumentEditor | Syncfusion
44
description: Learn how to change the document view between Print Layout (Pages) and Web Layout (Continuous) in the Syncfusion Blazor DocumentEditor component.
55
platform: document-processing
66
control: DocumentEditor

Document-Processing/Word/Word-Processor/blazor/how-to/change-the-cursor-color-in-document-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Change the Cursor Color in Blazor Document Editor
3+
title: Change the Cursor Color in Blazor Document Editor | Syncfusion
44
description: Learn how to change the cursor color in the Syncfusion Blazor Document Editor component by overriding the default CSS styles.
55
platform: document-processing
66
control: DocumentEditor

Document-Processing/Word/Word-Processor/blazor/how-to/customize-color-picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Customize the color picker in Blazor DocumentEditor Component | Syncfusion
3+
title: Customize Color Picker in Blazor DocumentEditor | Syncfusion
44
description: Learn how to customize the color picker in Syncfusion Blazor DocumentEditor component and much more.
55
platform: document-processing
66
control: DocumentEditor

Document-Processing/Word/Word-Processor/blazor/how-to/customize-context-menu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Customize the context menu in Blazor DocumentEditor Component | Syncfusion
3+
title: Customize Context Menu in Blazor DocumentEditor | Syncfusion
44
description: Learn how to customize context menu with document editor in real time scenarios like create simple word processor in Syncfusion Blazor DocumentEditor component.
55
platform: document-processing
66
control: DocumentEditor
@@ -79,4 +79,4 @@ The following code shows how to hide default context menu and add custom option
7979
}
8080
```
8181

82-
To learn how to render and configure the Document Editor component with a custom context menu, refer to the following example: [Blazor Word Processor - Context Menu](https://blazor.syncfusion.com/demos/document-editor/custom-context-menu?theme=bootstrap5)
82+
To learn how to render and configure the Document Editor component with a custom context menu, refer to the following example: [Blazor Word Processor - Context Menu](https://document.syncfusion.com/demos/docx-editor/blazor-server/document-editor/custom-context-menu?theme=bootstrap5)

Document-Processing/Word/Word-Processor/blazor/how-to/disable-optimized-text-measuring.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Disable Optimized Text measuring in Blazor DocumentEditor Component | Syncfusion
3+
title: Disable Optimized Text Measuring in Blazor DocumentEditor | Syncfusion
44
description: Learn how to disable optimized text measuring in Syncfusion Blazor DocumentEditor component and much more.
55
platform: document-processing
66
control: DocumentEditor
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
Starting from v19.3.0.x, the accuracy of text size measurements in Document editor is improved such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behavior along with an optional API [`EnableOptimizedTextMeasuring`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorSettingsModel.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorSettingsModel_EnableOptimizedTextMeasuring) in Document editor settings.
1313

14-
If you want the [`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (a.k.a Document Editor) component to retain the document pagination (display page-by-page) behavior like v19.2.0.x and older versions. Then you can disable this optimized text measuring improvement, by setting `false` to [`EnableOptimizedTextMeasuring`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorSettingsModel.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorSettingsModel_EnableOptimizedTextMeasuring) property of Blazor Document Editor component.
14+
If you want the [`Blazor Word Processor`](https://www.syncfusion.com/blazor-components/blazor-word-processor) component (Document Editor) component to retain the document pagination (display page-by-page) behavior like v19.2.0.x and older versions. Then you can disable this optimized text measuring improvement, by setting `false` to [`EnableOptimizedTextMeasuring`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DocumentEditor.DocumentEditorSettingsModel.html#Syncfusion_Blazor_DocumentEditor_DocumentEditorSettingsModel_EnableOptimizedTextMeasuring) property of Blazor Document Editor component.
1515

1616
## Disable Optimized Text Measuring in DocumentEditorContainer instance
1717

0 commit comments

Comments
 (0)