From c73437d618ba3e4fc2a2629b3c48556ffe174882 Mon Sep 17 00:00:00 2001 From: Venkateshmuruganandam Date: Fri, 22 Sep 2023 11:06:18 +0530 Subject: [PATCH 1/3] GitHub Link added --- File-Formats/DocIO/Overview.md | 2 ++ .../DocIO/Word-document/Compare-Word-documents.md | 12 +++++++++--- File-Formats/Presentation/Presentation-to-image.md | 6 ++++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/File-Formats/DocIO/Overview.md b/File-Formats/DocIO/Overview.md index fcdcba14e..e6c1591b5 100644 --- a/File-Formats/DocIO/Overview.md +++ b/File-Formats/DocIO/Overview.md @@ -18,6 +18,8 @@ It is a non-UI component that provides a full-fledged document instance model si * Advanced [Mail merge](https://help.syncfusion.com/file-formats/docio/working-with-mail-merge) support with different data sources. * Ability to create or edit Word 97-2003 and later version documents, and convert them to commonly used file formats such as [RTF](https://help.syncfusion.com/file-formats/docio/rtf), [WordML](https://help.syncfusion.com/file-formats/docio/word-file-formats#word-processing-xml-xml), [TXT](https://help.syncfusion.com/file-formats/docio/text), [HTML](https://help.syncfusion.com/file-formats/docio/html) and vice versa. * Ability to export a Word document as an [Image](https://help.syncfusion.com/file-formats/docio/word-to-image), [PDF](https://help.syncfusion.com/file-formats/docio/word-to-pdf) file, and [EPUB](https://help.syncfusion.com/file-formats/docio/word-to-epub) in high quality. +* Ability to [merge](https://help.syncfusion.com/file-formats/docio/word-document/merging-word-documents) and [split](https://help.syncfusion.com/file-formats/docio/word-document/split-word-documents) Word documents. +* Support to [compare](https://help.syncfusion.com/file-formats/docio/word-document/compare-word-documents) two DOCX format documents. * Ability to create and manipulate [charts](https://help.syncfusion.com/file-formats/docio/working-with-charts), [Shapes](https://help.syncfusion.com/file-formats/docio/working-with-shapes), and [Group shape](https://help.syncfusion.com/file-formats/docio/working-with-shapes#grouping-shapes) in DOCX and WordML format documents. * Ability to read and write [Built-In and Custom Document Properties](https://help.syncfusion.com/file-formats/docio/working-with-word-document#working-with-word-document-properties). * Ability to [find and replace](https://help.syncfusion.com/file-formats/docio/working-with-find-and-replace) text with its original formatting. diff --git a/File-Formats/DocIO/Word-document/Compare-Word-documents.md b/File-Formats/DocIO/Word-document/Compare-Word-documents.md index 800f18f33..7455d7878 100644 --- a/File-Formats/DocIO/Word-document/Compare-Word-documents.md +++ b/File-Formats/DocIO/Word-document/Compare-Word-documents.md @@ -13,7 +13,7 @@ Comparing two Word documents allows you to identify the changes between two vers * Deletions * Formatting -N> 1. DocIO performs word level comparison while comparing two Word documents.In this scenario, if a single character in a word is changed, the entire word will be highlighted as changed. +N> 1. DocIO performs word level comparison while comparing two Word documents. In this scenario, if a single character in a word is changed, the entire word will be highlighted as changed. N> 2. Comparing two Word documents supported in DOCX format only. ## Compare two Word documents @@ -81,6 +81,8 @@ End Using ![Compare Word documents in C#](../WorkingwithWordDocument_images/Compare-Word-documents-without-author.png) +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Compare-Word-documents/Compare-two-Word-documents/.NET). + ## Set Author and Date Compare the two Word documents by setting the author and date for revisions to identify the changes. In DocIO, the default setting for the "author" field is "Author", and the default setting for the "dateTime" field is the current time. @@ -146,13 +148,15 @@ End Using ![Compare Word documents in C#](../WorkingwithWordDocument_images/Compare-Word-documents.png) +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Compare-Word-documents/Set-author-and-date/.NET). + ## Comparison options -You can customize the Word comparison using our ComparisonOptions in the DocIO. +You can customize the Word comparison using our [ComparisonOptions](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.ComparisonOptions.html) in the DocIO. ### Ignore format changes -In the .NET Word library (DocIO), document comparison includes formatting changes by default. However, you can configure DocIO to ignore formatting differences using the DetectFormatChanges API to concentrate solely on content modifications. +In the .NET Word library (DocIO), document comparison includes formatting changes by default. However, you can configure DocIO to ignore formatting differences using the [DetectFormatChanges](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.ComparisonOptions.html#Syncfusion_DocIO_DLS_ComparisonOptions_DetectFormatChanges) API to concentrate solely on content modifications. The following code example illustrates how to compare two Word documents by ignoring the format changes. @@ -226,6 +230,8 @@ End Using ![Compare Word documents by ignoring format changes](../WorkingwithWordDocument_images/Ignore-format-changes.png) +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Compare-Word-documents/Ignore-format-changes/.NET). + ## See Also * [What happens when Word documents with track changes are used for comparing?](https://help.syncfusion.com/file-formats/docio/faq#what-happens-when-word-documents-with-track-changes-are-used-for-comparing) \ No newline at end of file diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md index eca96a2a9..c90a9bf8b 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -213,7 +213,7 @@ For instance, if a slide includes bulleted paragraphs, each having entrance anim N> 1. Only entrance animation effects are considered for generating separate images. Other animation effects and non-animated elements will be converted into images within the first image itself. N> 2. Converting PowerPoint animations to images is not supported in the UWP platform. -The following code example shows how to convert PowerPoint slides to images based on the sequence of animation effects using the `PresentationAnimationConverter` API. +The following code example shows how to convert PowerPoint slides to images based on the sequence of animation effects using the [PresentationAnimationConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.Presentation.PresentationAnimationConverter.html) API. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" %} @@ -312,7 +312,9 @@ End Using ![Convert PowerPoint slides to images with animation sequence](PPTXtoImage_images/PowerPoint-Animations-to-Images-output.png) -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Convert-PowerPoint-Animations-to-Images). +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Based-on-Entrance-animation-effects/.NET). + +T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material). ## UWP From 56a272f829f34667180ba5b2535907f11dd78d1b Mon Sep 17 00:00:00 2001 From: Venkateshmuruganandam Date: Fri, 22 Sep 2023 11:11:32 +0530 Subject: [PATCH 2/3] Modified --- File-Formats/Presentation/Presentation-to-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md index c90a9bf8b..1893b1b2a 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -314,7 +314,7 @@ End Using You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Based-on-Entrance-animation-effects/.NET). -T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material). +T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material) . ## UWP From 641dc9159e14a2705e219751cf1b0ebebf070e70 Mon Sep 17 00:00:00 2001 From: Venkateshmuruganandam Date: Fri, 22 Sep 2023 11:13:24 +0530 Subject: [PATCH 3/3] Modified --- File-Formats/Presentation/Presentation-to-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md index 1893b1b2a..c90a9bf8b 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -314,7 +314,7 @@ End Using You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Based-on-Entrance-animation-effects/.NET). -T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material) . +T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material). ## UWP