From 4602d60208e0fbabae63abc48fa541c80bd1cddb Mon Sep 17 00:00:00 2001 From: Moushmi Dhanislas Date: Mon, 29 Jun 2026 15:05:25 +0530 Subject: [PATCH 1/2] 1036262: Dummy PR --- .../Word/Word-Processor/angular/web-services/mvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Word/Word-Processor/angular/web-services/mvc.md b/Document-Processing/Word/Word-Processor/angular/web-services/mvc.md index 7650b525ba..a8b20db4ea 100644 --- a/Document-Processing/Word/Word-Processor/angular/web-services/mvc.md +++ b/Document-Processing/Word/Word-Processor/angular/web-services/mvc.md @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# Mvc in Angular Document editor component +# Mvc in Angular Document editor component DocumentEditor depends on server side interaction for below listed operations can be written in ASP.NET MVC using [Syncfusion.EJ2.WordEditor.AspNet.Mvc5](https://www.nuget.org/packages/Syncfusion.EJ2.WordEditor.AspNet.Mvc5) or [Syncfusion.EJ2.WordEditor.AspNet.Mvc4](https://www.nuget.org/packages/Syncfusion.EJ2.WordEditor.AspNet.Mvc4). From e8f852c2fcf0f0184b0d9eaf743d04a7c0d591f2 Mon Sep 17 00:00:00 2001 From: Moushmi Dhanislas Date: Mon, 29 Jun 2026 15:47:29 +0530 Subject: [PATCH 2/2] 1036262: Created Dummy PR --- .../Word/Word-Processor/angular/restrict-editing.md | 2 +- .../Word/Word-Processor/angular/web-services/core.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/angular/restrict-editing.md b/Document-Processing/Word/Word-Processor/angular/restrict-editing.md index 6ff239e998..310f2d581f 100644 --- a/Document-Processing/Word/Word-Processor/angular/restrict-editing.md +++ b/Document-Processing/Word/Word-Processor/angular/restrict-editing.md @@ -14,7 +14,7 @@ Document Editor provides support to restrict editing. When the protected documen ## Set current user -You can use the `currentUser` property to authorize the current document user by name, email, or user group name. +You can use the `currentUser` property to authorize the current document user by name, email, or user group name. The following code shows how to set currentUser diff --git a/Document-Processing/Word/Word-Processor/angular/web-services/core.md b/Document-Processing/Word/Word-Processor/angular/web-services/core.md index b7597be627..1fa7e5d507 100644 --- a/Document-Processing/Word/Word-Processor/angular/web-services/core.md +++ b/Document-Processing/Word/Word-Processor/angular/web-services/core.md @@ -54,9 +54,9 @@ The following example code illustrates how to write a Web API for importing Word ### Import document with TIFF, EMF and WMF images -The web browsers do not support to display metafile images like EMF and WMF and also TIFF format images. As a fallback approach, you can convert the metafile/TIFF format image to raster image using any image converter in the `MetafileImageParsed` event and this fallback raster image will be displayed in the client-side Document editor component. +The web browsers do not support to display metafile images like EMF and WMF and also TIFF format images. As a fallback approach, you can convert the metafile/TIFF format image to raster image using any image converter in the `MetafileImageParsed` event and this fallback raster image will be displayed in the client-side Document editor component. ->Note: In `MetafileImageParsedEventArgs` event argument, you can get the metafile stream using `MetafileStream` property and you can get the `IsMetafile` boolean value to determine whether the image is meta file images(WMF,EMF) or Tiff format images. In below example, we have converted the TIFF to raster image in `ConvertTiffToRasterImage()` method using `Bitmiracle https://www.nuget.org/packages/BitMiracle.LibTiff.NET`. +>Note: In `MetafileImageParsedEventArgs` event argument, you can get the metafile stream using `MetafileStream` property and you can get the `IsMetafile` boolean value to determine whether the image is meta file images(WMF,EMF) or Tiff format images. In below example, we have converted the TIFF to raster image in `ConvertTiffToRasterImage()` method using `Bitmiracle https://www.nuget.org/packages/BitMiracle.LibTiff.NET`. The following example code illustrates how to use `MetafileImageParsed` event for creating fallback raster image for metafile present in a Word document.