diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/override-the-keyboard-shortcuts.md b/Document-Processing/Word/Word-Processor/vue/how-to/override-the-keyboard-shortcuts.md index 890752a102..3593909f31 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/override-the-keyboard-shortcuts.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/override-the-keyboard-shortcuts.md @@ -10,11 +10,11 @@ domainurl: ##DomainURL## # Override the Keyboard Shortcuts in Vue Document Editor Component -[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) triggers the [`keyDown`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#keydown) event every time when any key is entered and provides an instance of [`DocumentEditorKeyDownEventArgs`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorKeyDownEventArgs/). You can use the [`isHandled`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorKeyDownEventArgs#ishandled) property to override the keyboard shortcut behavior. +[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) triggers the [`keyDown`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#keydown) event every time any key is entered and provides an instance of [`DocumentEditorKeyDownEventArgs`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorKeyDownEventArgs). You can use the [`isHandled`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorKeyDownEventArgs#ishandled) property to override the keyboard shortcut behavior. -## Preventing default keyboard shortcut +## Prevent the default keyboard shortcut -The following code shows how to prevent the `CTRL + C` keyboard shortcut for copying selected content in Document Editor. +The following code shows how to prevent the `CTRL + C` keyboard shortcut for copying selected content in the Document Editor. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -27,9 +27,9 @@ The following code shows how to prevent the `CTRL + C` keyboard shortcut for cop {% previewsample "/document-processing/code-snippet/document-editor/vue/export-cs6" %} -## Override or define the keyboard shortcut +## Override or define a keyboard shortcut -Override or define a new keyboard shortcut behavior instead of preventing the keyboard shortcut. +You can override or define a new keyboard shortcut behavior instead of preventing the default behavior. For example, `Ctrl + S` keyboard shortcut saves the document in SFDT format by default, and there is no behavior for `Ctrl + Alt + S`. The following code demonstrates how to override the `Ctrl + S` shortcut to save a document in DOCX format and define `Ctrl + Alt + S` to save the document in SFDT format. diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/read-only-by-default.md b/Document-Processing/Word/Word-Processor/vue/how-to/read-only-by-default.md index 65863749bf..71f95c2400 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/read-only-by-default.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/read-only-by-default.md @@ -10,9 +10,9 @@ domainurl: ##DomainURL## # Read only by default in Vue Document editor component -In this article, we are going to see how to open a document in read only mode by default in Document Editor & Document Editor Container. +In this article, we are going to see how to open a document in read-only mode by default in the Document Editor & Document Editor Container. -## How to open a document in read only mode by default in DocumentEditor +## Opening a document in read-only mode by default in DocumentEditor {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -25,9 +25,9 @@ In this article, we are going to see how to open a document in read only mode by {% previewsample "/document-processing/code-snippet/document-editor/vue/getting-started-cs4" %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -## How to open a document in ready only mode by default in DocumentEditorContainer +## Opening a document in read-only mode by default in DocumentEditorContainer {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -40,6 +40,6 @@ In this article, we are going to see how to open a document in read only mode by {% previewsample "/document-processing/code-snippet/document-editor/vue/getting-started-cs5" %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -Note: You can use the `restrictEditing` in Document Editor Container and `isReadOnly` in Document Editor based on your requirement to change component to read only mode. \ No newline at end of file +N> You can use the `restrictEditing` in `DocumentEditorContainerComponent` and `isReadOnly` in `DocumentEditorComponent` based on your requirement to change the component to read-only mode. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/resize-document-editor.md b/Document-Processing/Word/Word-Processor/vue/how-to/resize-document-editor.md index cd4bdf1d21..41f9499893 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/resize-document-editor.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/resize-document-editor.md @@ -10,13 +10,13 @@ domainurl: ##DomainURL## # Resize document editor in Vue Document editor component -In this article, we are going to see how to change height and width of [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor). +In this article, we are going to see how to change the height and width of the [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor). ## Change height of Document Editor -DocumentEditorContainer initially render with default height. You can change height of documenteditor using [`height`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#height) property, the value which is in pixel. +DocumentEditorContainer initially renders with default height. You can change the height of the Document Editor using the [`height`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#height) property, the value which is in pixels. -The following example code illustrates how to change height of Document Editor. +The following example code illustrates how to change the height of Document Editor. ``` @@ -26,9 +26,9 @@ Similarly, you can use [`height`](https://ej2.syncfusion.com/vue/documentation/a ## Change width of Document Editor -DocumentEditorContainer initially render with default width. You can change width of documenteditor using [`width`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#width) property, the value which is in percent. +DocumentEditorContainer initially renders with default width. You can change the width of the Document Editor using the [`width`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#width) property, the value which is in percentages. -The following example code illustrates how to change width of Document Editor. +The following example code illustrates how to change the width of Document Editor. ``` @@ -38,9 +38,9 @@ Similarly, you can use [`width`](https://ej2.syncfusion.com/vue/documentation/ap ## Resize Document Editor -Using [`resize`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container#resize) method, you change height and width of Document editor. +Using the [`resize`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container#resize) method, you can change the height and width of the Document Editor. -The following example code illustrates how to fit Document Editor to browser window size. +The following example code illustrates how to fit the Document Editor to the browser window size. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -58,15 +58,15 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onWindowResize = function () { - //Resizes the document editor component to fit full browser window automatically whenever the browser resized. + //Resizes the Document Editor component to fit full browser window automatically whenever the browser is resized. updateDocumentEditorSize(); } const updateDocumentEditorSize = function () { - //Resizes the document editor component to fit full browser window. + //Resizes the Document Editor component to fit full browser window. let windowWidth = window.innerWidth; let windowHeight = window.innerHeight; container.value.ej2Instances.resize(windowWidth, windowHeight); @@ -102,16 +102,16 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { onWindowResize: function () { - //Resizes the document editor component to fit full browser window automatically whenever the browser resized. + //Resizes the Document Editor component to fit full browser window automatically whenever the browser is resized. this.updateDocumentEditorSize(); }, updateDocumentEditorSize: function () { - //Resizes the document editor component to fit full browser window. + //Resizes the Document Editor component to fit full browser window. let windowWidth = window.innerWidth; let windowHeight = window.innerHeight; this.$refs.container.ej2Instances.resize(windowWidth, windowHeight); @@ -130,4 +130,4 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/retrieve-the-bookmark-content-as-text.md b/Document-Processing/Word/Word-Processor/vue/how-to/retrieve-the-bookmark-content-as-text.md index ac81b7f695..990938b546 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/retrieve-the-bookmark-content-as-text.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/retrieve-the-bookmark-content-as-text.md @@ -1,6 +1,6 @@ --- layout: post -title: Retrieve the bookmark content as text in Vue Document editor component | Syncfusion +title: How to Retrieve Bookmark Content in Vue DOCX Editor | Syncfusion description: Learn here all about Retrieve the bookmark content as text in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. control: Retrieve the bookmark content as text platform: document-processing @@ -10,11 +10,11 @@ domainurl: ##DomainURL## # Retrieve the bookmark content as text in Vue Document editor component -You can get the bookmark or whole document content from the [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component as plain text and SFDT (rich text). +You can get the bookmark or the whole document content from the [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component as plain text and SFDT (rich text). ## Get the bookmark content as plain text -You can [`selectBookmark`](../bookmark#select-bookmark) API to navigate to the bookmark and use [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API to get the bookmark content as plain text from Vue Document Editor component. +You can use the [`selectBookmark`](../bookmark#select-bookmark) API to navigate to the bookmark and use the [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API to get the bookmark content as plain text from the Vue Document Editor component. The following example code illustrates how to get the bookmark content as plain text. @@ -34,7 +34,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onCreated = function () { @@ -76,7 +76,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -101,9 +101,9 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -To get the bookmark content as SFDT (rich text), please check this [`link`](../how-to/get-the-selected-content#get-the-selected-content-as-sfdt-rich-text) +To get the bookmark content as SFDT (rich text), check this [`link`](../how-to/get-the-selected-content#get-the-selected-content-as-sfdt-rich-text). ## Get the whole document content as text @@ -127,7 +127,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onCreated = function () { @@ -164,7 +164,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -184,9 +184,9 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -## Get the whole document content as SFDT(rich text) +## Get the whole document content as SFDT (rich text) You can use [`serialize`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#serialize) API to get the whole document content as SFDT string from Vue Document Editor component. @@ -208,7 +208,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onCreated = function () { @@ -244,7 +244,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -262,7 +262,7 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ## Get the header content as text @@ -287,7 +287,6 @@ The following example code illustrates how to get the header content as plain te import { provide } from "vue"; import { - DocumentEditorContainerComponent, DocumentEditorContainerComponent, Toolbar, } from '@syncfusion/ej2-vue-documenteditor'; @@ -320,6 +319,6 @@ import { provide } from "vue"; ``` -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. Similarly, you can use [`goToFooter`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#gotofooter) API to navigate the selection to the footer and then use [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API to get the content as plain text. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/set-default-format-in-document-editor.md b/Document-Processing/Word/Word-Processor/vue/how-to/set-default-format-in-document-editor.md index 5f0066005b..80c49867ef 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/set-default-format-in-document-editor.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/set-default-format-in-document-editor.md @@ -1,6 +1,6 @@ --- layout: post -title: Set default format in document editor in Vue Document editor component | Syncfusion +title: How to Set Default Format in Vue DOCX Editor | Syncfusion description: Learn here all about Set default format in document editor in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. control: Set default format in document editor platform: document-processing @@ -10,13 +10,13 @@ domainurl: ##DomainURL## # Set default format in document editor in Vue Document editor component -You can set the default character format, paragraph format and section format in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor). +You can set the default character format, paragraph format, and section format in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor). ## Set the default character format -You can use [`setDefaultCharacterFormat`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#setdefaultcharacterformat) method to set the default character format. For example, Document editor default font size is 11 and you can change it as any valid value. +You can use [`setDefaultCharacterFormat`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#setdefaultcharacterformat) method to set the default character format. For example, the Document Editor default font size is 11, and you can change it to any valid value. -The following example code illustrates how to change the default font size in Document editor. +The following example code illustrates how to change the default font size in the Document Editor. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -34,7 +34,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]) const onCreated = function () { @@ -65,7 +65,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -79,11 +79,11 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -Similarly, you can change the required [`CharacterFormatProperties`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/characterFormatProperties) default value. +Similarly, you can change the required [`CharacterFormatProperties`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/characterFormatProperties) default values in the Document Editor. -The following example code illustrates how to change other character format default value in Document editor. +The following example code illustrates how to change other default character format values in the Document Editor. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -101,7 +101,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]) const onCreated = function () { @@ -143,7 +143,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -168,13 +168,13 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ## Set the default paragraph format You can use [`setDefaultParagraphFormat`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#setdefaultparagraphformat) API to set the default paragraph format. You can change the required [`ParagraphFormatProperties`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/paragraphFormatProperties) default value. -The following example code illustrates how to change the paragraph format(before spacing, line spacing etc.,) default value in Document editor. +The following example code illustrates how to change the paragraph format (before spacing, line spacing, etc.) default value in the Document Editor. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -192,7 +192,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onCreated = function () { @@ -229,7 +229,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -249,13 +249,13 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ## Set the default section format You can use [`setDefaultSectionFormat`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#setdefaultsectionformat) API to set the default section format. You can change the required [`SectionFormatProperties`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/sectionFormatProperties) default value. -The following example code illustrates how to change the section format(header and footer distance, page width and height, etc.,) default value in Document editor. +The following example code illustrates how to change the section format (header and footer distance, page width and height, etc.) default value in the Document Editor. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -273,7 +273,7 @@ import { provide, ref } from 'vue'; const container = ref(null); const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'; -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]); const onCreated = function () { @@ -314,7 +314,7 @@ export default { }; }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] }, methods: { @@ -338,4 +338,4 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file