From bef19f6234092dd350972bfef0e9ae06837228f5 Mon Sep 17 00:00:00 2001 From: "sneha.biju" Date: Fri, 22 Mar 2024 19:10:58 +0530 Subject: [PATCH 1/4] ES-877994 - Revamp the UG for .NET MAUI and Xamarin for the helper files in both DocIO --- .../Convert-Word-Document-to-Image-in-MAUI.md | 12 ++++----- .../Convert-Word-Document-to-PDF-in-MAUI.md | 12 ++++----- .../DocIO/Create-Word-document-in-MAUI.md | 24 +++++++++-------- .../Open-and-save-Word-document-in-MAUI.md | 26 +++++++++---------- 4 files changed, 38 insertions(+), 36 deletions(-) diff --git a/File-Formats/DocIO/Convert-Word-Document-to-Image-in-MAUI.md b/File-Formats/DocIO/Convert-Word-Document-to-Image-in-MAUI.md index 5953e8cbf..99415776f 100644 --- a/File-Formats/DocIO/Convert-Word-Document-to-Image-in-MAUI.md +++ b/File-Formats/DocIO/Convert-Word-Document-to-Image-in-MAUI.md @@ -99,12 +99,6 @@ using (WordDocument document = new WordDocument(assembly.GetManifestResourceStre {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Convert-Word-to-image/.NET-MAUI). - -By executing the program, you will get the **image** as follows. - -![Word to Image in .NET MAUI](WordToPDF_images/Output-WordtoImage.png) - ## Helper files for .NET MAUI Refer the below helper files and add them into the mentioned project. These helper files allow you to save the stream as a physical file and open the file for viewing. @@ -182,6 +176,12 @@ Refer the below helper files and add them into the mentioned project. These help +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Convert-Word-to-image/.NET-MAUI). + +By executing the program, you will get the **image** as follows. + +![Word to Image in .NET MAUI](WordToPDF_images/Output-WordtoImage.png) + Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion Word library (DocIO) features. An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/File-Formats/DocIO/Convert-Word-Document-to-PDF-in-MAUI.md b/File-Formats/DocIO/Convert-Word-Document-to-PDF-in-MAUI.md index c60e9500b..7f38a0fa5 100644 --- a/File-Formats/DocIO/Convert-Word-Document-to-PDF-in-MAUI.md +++ b/File-Formats/DocIO/Convert-Word-Document-to-PDF-in-MAUI.md @@ -98,12 +98,6 @@ using (WordDocument document = new WordDocument(assembly.GetManifestResourceStre {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Convert-Word-document-to-PDF/.NET-MAUI). - -By executing the program, you will get the **PDF document** as follows. - -![Word to PDF in .NET MAUI](WordToPDF_images/OutputImage.png) - ## Helper files for .NET MAUI Refer the below helper files and add them into the mentioned project. These helper files allow you to save the stream as a physical file and open the file for viewing. @@ -181,6 +175,12 @@ Refer the below helper files and add them into the mentioned project. These help +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Convert-Word-document-to-PDF/.NET-MAUI). + +By executing the program, you will get the **PDF document** as follows. + +![Word to PDF in .NET MAUI](WordToPDF_images/OutputImage.png) + Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion Word library (DocIO) features. An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/bootstrap5) in ASP.NET Core. \ No newline at end of file diff --git a/File-Formats/DocIO/Create-Word-document-in-MAUI.md b/File-Formats/DocIO/Create-Word-document-in-MAUI.md index 3faf0806c..530330030 100644 --- a/File-Formats/DocIO/Create-Word-document-in-MAUI.md +++ b/File-Formats/DocIO/Create-Word-document-in-MAUI.md @@ -301,15 +301,11 @@ saveService.SaveAndView("Sample.docx", "application/msword", ms); {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Getting-Started/.NET-MAUI). -By executing the program, you will get the **Word document** as follows. - -![MAUI output Word document](MAUI_Images/GettingStartedOutput.jpg) ## Helper files for .NET MAUI -Download the helper files from this [link](https://www.syncfusion.com/downloads/support/directtrac/general/ze/HelperFiles_DocIO-2028573617.zip) and add them into the mentioned project. These helper files allow you to save the stream as a physical file and open the file for viewing. +Refer the helper files to be added into the mentioned project. These helper files allow you to **save the stream as a physical file and open the file for viewing**. @@ -328,7 +324,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ .NET MAUI Project @@ -338,7 +334,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Windows @@ -348,7 +344,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Android @@ -358,7 +354,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Mac Catalyst @@ -368,7 +364,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ iOS
- SaveService.cs + [SaveService.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Services/SaveService.cs) Represent the base class for save operation. - SaveWindows.cs + [SaveWindows.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/Windows/SaveWindows.cs) Save implementation for Windows. - SaveAndroid.cs + [SaveAndroid.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/Android/SaveAndroid.cs) Save implementation for Android device. - SaveMac.cs + [SaveMac.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/MacCatalyst/SaveMac.cs) Save implementation for Mac Catalyst device. - SaveIOS.cs + [SaveIOS.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/iOS/SaveIOS.cs) Save implementation for iOS device @@ -376,7 +372,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/
- PreviewControllerDS.cs
QLPreviewItemFileSystem.cs + [PreviewControllerDS.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/iOS/PreviewControllerDS.cs)
[QLPreviewItemFileSystem.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Getting-Started/.NET-MAUI/Create-Word-document/Platforms/iOS/QLPreviewItemFileSystem.cs)
Helper classes for viewing the Word document in iOS device @@ -384,6 +380,12 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Getting-Started/.NET-MAUI). + +By executing the program, you will get the **Word document** as follows. + +![MAUI output Word document](MAUI_Images/GettingStartedOutput.jpg) + Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion Word library (DocIO) features. An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/File-Formats/DocIO/Open-and-save-Word-document-in-MAUI.md b/File-Formats/DocIO/Open-and-save-Word-document-in-MAUI.md index 6c45ef153..014c6aefc 100644 --- a/File-Formats/DocIO/Open-and-save-Word-document-in-MAUI.md +++ b/File-Formats/DocIO/Open-and-save-Word-document-in-MAUI.md @@ -114,15 +114,9 @@ saveService.SaveAndView("Sample.docx", "application/msword", ms); {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI). - -By executing the program, you will get the **Word document** as follows. - -![MAUI open and save output Word document](MAUI_Images/OpenAndSaveOutput.png) - ## Helper files for .NET MAUI -Download the helper files from this [link](https://www.syncfusion.com/downloads/support/directtrac/general/ze/HelperFiles_DocIO-2028573617.zip) and add them into the mentioned project. These helper files allow you to save the stream as a physical file and open the file for viewing. +Refer the helper files to be added into the mentioned project. These helper files allow you to save the stream as a physical file and open the file for viewing. @@ -141,7 +135,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ .NET MAUI Project @@ -151,7 +145,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Windows @@ -161,7 +155,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Android @@ -171,7 +165,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ Mac Catalyst @@ -181,7 +175,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/ iOS
- SaveService.cs + [SaveService.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/SaveServices/SaveService.cs) Represent the base class for save operation. - SaveWindows.cs + [SaveWindows.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/Windows/SaveWindows.cs) Save implementation for Windows. - SaveAndroid.cs + [SaveAndroid.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/Android/SaveAndroid.cs) Save implementation for Android device. - SaveMac.cs + [SaveMac.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/MacCatalyst/SaveMac.cs) Save implementation for Mac Catalyst device. - SaveIOS.cs + [SaveIOS.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/iOS/SaveIOS.cs) Save implementation for iOS device @@ -189,7 +183,7 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/
- PreviewControllerDS.cs
QLPreviewItemFileSystem.cs + [PreviewControllerDS.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/iOS/PreviewControllerDS.cs)
[QLPreviewItemFileSystem.cs](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI/Open-and-save-Word-document/Platforms/iOS/QLPreviewItemFileSystem.cs)
Helper classes for viewing the Word document in iOS device @@ -197,4 +191,10 @@ Download the helper files from this [link](https://www.syncfusion.com/downloads/
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Read-and-Save-document/Open-and-save-Word-document/.NET-MAUI). + +By executing the program, you will get the **Word document** as follows. + +![MAUI open and save output Word document](MAUI_Images/OpenAndSaveOutput.png) + Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion Word library (DocIO) features. From 8b61aec7452c7e72c8c2f2f0fd0739997075b8c0 Mon Sep 17 00:00:00 2001 From: "sneha.biju" Date: Fri, 22 Mar 2024 19:24:01 +0530 Subject: [PATCH 2/4] ES-876624 - Add published KB tasks in UG documentation for both DocIO and Presentation --- File-Formats/DocIO/Working-with-Fields.md | 4 +++- File-Formats/DocIO/word-to-pdf.md | 1 + File-Formats/Presentation/Charts/Chart-Series.md | 5 ++++- File-Formats/Presentation/Charts/Chart-Title.md | 3 +++ File-Formats/Presentation/Presentation-to-PDF.md | 1 + File-Formats/Presentation/Presentation-to-image.md | 3 ++- File-Formats/Presentation/Working-with-Charts.md | 2 ++ .../Presentation/Working-with-PowerPoint-presentation.md | 4 ++++ File-Formats/Presentation/Working-with-Tables.md | 7 ++++++- File-Formats/Presentation/Working-with-find-and-replace.md | 3 +++ File-Formats/Presentation/Working-with-images.md | 5 +++++ File-Formats/Presentation/Working-with-shapes.md | 5 ++++- 12 files changed, 38 insertions(+), 5 deletions(-) diff --git a/File-Formats/DocIO/Working-with-Fields.md b/File-Formats/DocIO/Working-with-Fields.md index ce10a36dd..1aa424e7a 100644 --- a/File-Formats/DocIO/Working-with-Fields.md +++ b/File-Formats/DocIO/Working-with-Fields.md @@ -1756,4 +1756,6 @@ document.Close() ## See Also * [Is it possible to update Include Text field in Word document using Essential DocIO?](https://www.syncfusion.com/kb/3921/is-it-possible-to-update-include-text-field-in-word-document-using-essential-docio) -* [How to insert author's name in a Word document?](https://www.syncfusion.com/kb/13929/how-to-insert-authors-name-in-a-word-document) \ No newline at end of file +* [How to insert author's name in a Word document?](https://www.syncfusion.com/kb/13929/how-to-insert-authors-name-in-a-word-document) +* [How to insert IF field with multiple body items in Word document?](https://support.syncfusion.com/kb/article/15139/how-to-insert-if-field-with-multiple-body-items-in-word-document-using-net-core-word-library?isInternalRefresh=False) +* [How to insert Merge field inside an IF field in a Word document?](https://support.syncfusion.com/kb/article/15255/how-to-insert-merge-field-inside-an-if-field-in-a-word-document-using-net-core-word-library?isInternalRefresh=False) \ No newline at end of file diff --git a/File-Formats/DocIO/word-to-pdf.md b/File-Formats/DocIO/word-to-pdf.md index 6be6e3f3f..7b954f255 100644 --- a/File-Formats/DocIO/word-to-pdf.md +++ b/File-Formats/DocIO/word-to-pdf.md @@ -2550,3 +2550,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync * [How to convert Word to PDF in Blazor WebAssembly (WASM)?](https://support.syncfusion.com/kb/article/12239/how-to-convert-word-to-pdf-in-blazor-webassembly-wasm) * [How to perform Word to PDF conversion in WinForms ?](https://support.syncfusion.com/kb/article/8848/how-to-perform-word-to-pdf-conversion-in-winforms-?isInternalRefresh=False) * [How to preserve track changes markup in Word to PDF conversion](https://support.syncfusion.com/kb/article/14997/how-to-preserve-simple-markup-all-markup-and-no-markup-of-track-changes-during-word-to-pdf-conversion) +* [How to preserve simple markup, all markup, and no markup of track changes during Word to PDF conversion?](https://support.syncfusion.com/kb/article/14997/how-to-preserve-simple-markup-all-markup-and-no-markup-of-track-changes-during-word-to-pdf-conversion) \ No newline at end of file diff --git a/File-Formats/Presentation/Charts/Chart-Series.md b/File-Formats/Presentation/Charts/Chart-Series.md index f8f75c48f..468c4dfee 100644 --- a/File-Formats/Presentation/Charts/Chart-Series.md +++ b/File-Formats/Presentation/Charts/Chart-Series.md @@ -535,4 +535,7 @@ chart.Series(0).SerieFormat.Percent = 10 {% endhighlight %} {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Charts/Format-Series/Explode-Pie-Chart/.NET). \ No newline at end of file +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Charts/Format-Series/Explode-Pie-Chart/.NET). + +## See Also +* [How to change the slice color of Pie chart in Presentation?](https://support.syncfusion.com/kb/article/13830/how-to-change-the-slice-color-of-pie-chart-in-presentation-using-c-in-aspnet-core) \ No newline at end of file diff --git a/File-Formats/Presentation/Charts/Chart-Title.md b/File-Formats/Presentation/Charts/Chart-Title.md index 80e33b2cc..f75efa800 100644 --- a/File-Formats/Presentation/Charts/Chart-Title.md +++ b/File-Formats/Presentation/Charts/Chart-Title.md @@ -212,3 +212,6 @@ End Using {% endhighlight %} {% endtabs %} + +## See Also +* [How to format chart title in PowerPoint using C#?](https://support.syncfusion.com/kb/article/13825/how-to-format-chart-title-in-powerpoint-using-c) \ No newline at end of file diff --git a/File-Formats/Presentation/Presentation-to-PDF.md b/File-Formats/Presentation/Presentation-to-PDF.md index 6db0144a7..f3d9766af 100644 --- a/File-Formats/Presentation/Presentation-to-PDF.md +++ b/File-Formats/Presentation/Presentation-to-PDF.md @@ -1471,3 +1471,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## See Also * [How to convert PPTX to PDF in Blazor WebAssembly (WASM)?](https://support.syncfusion.com/kb/article/12120/how-to-convert-pptx-to-pdf-in-blazor-webassembly-wasm) +* [How to resolve font problems during PowerPoint to PDF or image conversion?](https://support.syncfusion.com/kb/article/15472/how-to-resolve-font-problems-during-powerpoint-to-pdf-or-image-conversion) \ 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 48f5acbf0..b40c1e8d1 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -900,4 +900,5 @@ N> The .NET PowerPoint Library (Presentation) uses System.Drawing functionalitie ## See Also -* [How to convert PPTX to Image in Blazor WebAssembly (WASM)?](https://support.syncfusion.com/kb/article/12122/how-to-convert-pptx-to-image-in-blazor-webassembly-wasm) \ No newline at end of file +* [How to convert PPTX to Image in Blazor WebAssembly (WASM)?](https://support.syncfusion.com/kb/article/12122/how-to-convert-pptx-to-image-in-blazor-webassembly-wasm) +* [How custom resolution supported in WinForms PowerPoint slide to image conversion?](https://support.syncfusion.com/kb/article/6685/how-custom-resolution-supported-in-winforms-powerpoint-slide-to-image-conversion) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-Charts.md b/File-Formats/Presentation/Working-with-Charts.md index ed76c5569..087460b75 100644 --- a/File-Formats/Presentation/Working-with-Charts.md +++ b/File-Formats/Presentation/Working-with-Charts.md @@ -2092,3 +2092,5 @@ The following Chart types are supported in Presentation. * Surface_NoColor_3D * Surface_NoColor_Contour +## See Also +* [How to set same number of intervals for Primary and Secondary ValueAxis?](https://support.syncfusion.com/kb/article/11366/how-to-set-same-number-of-intervals-for-primary-and-secondary-valueaxis-in-winforms-presentation) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-PowerPoint-presentation.md b/File-Formats/Presentation/Working-with-PowerPoint-presentation.md index 09a0b59a1..740a5f046 100644 --- a/File-Formats/Presentation/Working-with-PowerPoint-presentation.md +++ b/File-Formats/Presentation/Working-with-PowerPoint-presentation.md @@ -547,3 +547,7 @@ End Using N> The first slide number is the starting slide number of the presentation, and this API allows you to set the first slide number from 0 to 9999. You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PowerPoint-Presentation/First-slide-number/.NET). + +## See Also +* [How to merge or combine multiple PowerPoint files](https://support.syncfusion.com/kb/article/7961/how-to-merge-or-combine-multiple-powerpoint-files-in-c-vb-net) +* [How to extract text from a PowerPoint presentation?](https://support.syncfusion.com/kb/article/7711/how-to-extract-text-from-a-powerpoint-presentation) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-Tables.md b/File-Formats/Presentation/Working-with-Tables.md index 9a2363d9b..cab37203a 100644 --- a/File-Formats/Presentation/Working-with-Tables.md +++ b/File-Formats/Presentation/Working-with-Tables.md @@ -1240,4 +1240,9 @@ pptxDoc.Close() {% endtabs %} -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Tables/Edit-table-contents). \ No newline at end of file +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Tables/Edit-table-contents). + +## See Also +* [How to set background image for a table cell?](https://support.syncfusion.com/kb/article/5731/how-to-set-background-image-for-a-table-cell-in-winforms-) +* [How to add images to a table cell?](https://support.syncfusion.com/kb/article/6929/how-to-add-images-to-a-table-cell-using-essential-presentation-library) +* [How to add text with different styles in the same table cell?](https://support.syncfusion.com/kb/article/5606/how-to-add-text-with-different-styles-in-the-same-table-cell) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-find-and-replace.md b/File-Formats/Presentation/Working-with-find-and-replace.md index 2f057b653..18a90c2af 100644 --- a/File-Formats/Presentation/Working-with-find-and-replace.md +++ b/File-Formats/Presentation/Working-with-find-and-replace.md @@ -680,3 +680,6 @@ End Using {% endtabs %} You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Find-and-Replace/Find-and-highlight-in-slide). + +## See Also +* [How to replace the hyperlink within a SmartArt in PowerPoint Presentation?](https://support.syncfusion.com/kb/article/15293/how-to-replace-the-hyperlink-within-a-smartart-in-powerpoint-presentation) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-images.md b/File-Formats/Presentation/Working-with-images.md index 86d901e78..ecbfcbbc8 100644 --- a/File-Formats/Presentation/Working-with-images.md +++ b/File-Formats/Presentation/Working-with-images.md @@ -463,3 +463,8 @@ pptxDoc.Close() You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Images/Remove-all-images). +## See Also +* [How to crop an image in a Presentation using C#?](https://support.syncfusion.com/kb/article/15431/how-to-crop-an-image-in-a-presentation-using-c) +* [How to extract the cropped image from Presentation in C#?](https://support.syncfusion.com/kb/article/15451/how-to-extract-the-cropped-image-from-presentation-in-c) +* [How to crop and insert image in Presentation in C#?](https://support.syncfusion.com/kb/article/15432/how-to-crop-and-insert-image-in-presentation-in-c) +* [How to remove the crop from image in Presentation using C#?](https://support.syncfusion.com/kb/article/15435/how-to-remove-the-crop-from-image-in-presentation-using-c) \ No newline at end of file diff --git a/File-Formats/Presentation/Working-with-shapes.md b/File-Formats/Presentation/Working-with-shapes.md index 0a045f70b..f79bfbd27 100644 --- a/File-Formats/Presentation/Working-with-shapes.md +++ b/File-Formats/Presentation/Working-with-shapes.md @@ -511,4 +511,7 @@ pptxDoc.Close() You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Shapes/Remove-groupshape). -N> The Presentation library do not have support for converting the auto-shapes with modified adjustment values in PowerPoint presentation to image or PDF conversion. To know more about adjustment values in PowerPoint shapes please click [here](https://msdn.microsoft.com/en-us/library/office/aa220882(v=office.11).aspx). \ No newline at end of file +N> The Presentation library do not have support for converting the auto-shapes with modified adjustment values in PowerPoint presentation to image or PDF conversion. To know more about adjustment values in PowerPoint shapes please click [here](https://msdn.microsoft.com/en-us/library/office/aa220882(v=office.11).aspx). + +## See Also +* [How to set Smooth Start and End for animated shapes in Presentation?](https://support.syncfusion.com/kb/article/11450/how-to-set-smooth-start-and-end-for-animated-shapes-in-presentation) \ No newline at end of file From acb9d83991cc2b8258b47db65f708eee91c82158 Mon Sep 17 00:00:00 2001 From: "sneha.biju" Date: Fri, 22 Mar 2024 19:32:41 +0530 Subject: [PATCH 3/4] Resolved compilation issue --- File-Formats/DocIO/Charts/Chart-Series.md | 2 +- File-Formats/DocIO/Charts/Chart-Title.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/File-Formats/DocIO/Charts/Chart-Series.md b/File-Formats/DocIO/Charts/Chart-Series.md index 64d60a49e..1b90c3925 100644 --- a/File-Formats/DocIO/Charts/Chart-Series.md +++ b/File-Formats/DocIO/Charts/Chart-Series.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Chart Series +# Chart Series in PowerPoint In a chart, a **series** represents a set of related data points, often depicted using lines, bars, or markers to show data trends or comparisons. Using DocIO, you can **customize the series in the chart**. diff --git a/File-Formats/DocIO/Charts/Chart-Title.md b/File-Formats/DocIO/Charts/Chart-Title.md index 6a47a805d..96d744c86 100644 --- a/File-Formats/DocIO/Charts/Chart-Title.md +++ b/File-Formats/DocIO/Charts/Chart-Title.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Chart Title +# Chart Title in PowerPoint Chart title is a concise description at the top of a chart, offering context and clarity for the data displayed. Using DocIO, you can **customize the chart title in the chart**. From c5299b31e2a47f610017022ca5dc10dc73083dd9 Mon Sep 17 00:00:00 2001 From: "sneha.biju" Date: Fri, 22 Mar 2024 19:47:20 +0530 Subject: [PATCH 4/4] Resolved compilation issue --- File-Formats/DocIO/Charts/Chart-Series.md | 2 +- File-Formats/DocIO/Charts/Chart-Title.md | 2 +- File-Formats/Presentation/Charts/Chart-Series.md | 2 +- File-Formats/Presentation/Charts/Chart-Title.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/File-Formats/DocIO/Charts/Chart-Series.md b/File-Formats/DocIO/Charts/Chart-Series.md index 1b90c3925..64d60a49e 100644 --- a/File-Formats/DocIO/Charts/Chart-Series.md +++ b/File-Formats/DocIO/Charts/Chart-Series.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Chart Series in PowerPoint +# Chart Series In a chart, a **series** represents a set of related data points, often depicted using lines, bars, or markers to show data trends or comparisons. Using DocIO, you can **customize the series in the chart**. diff --git a/File-Formats/DocIO/Charts/Chart-Title.md b/File-Formats/DocIO/Charts/Chart-Title.md index 96d744c86..6a47a805d 100644 --- a/File-Formats/DocIO/Charts/Chart-Title.md +++ b/File-Formats/DocIO/Charts/Chart-Title.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Chart Title in PowerPoint +# Chart Title Chart title is a concise description at the top of a chart, offering context and clarity for the data displayed. Using DocIO, you can **customize the chart title in the chart**. diff --git a/File-Formats/Presentation/Charts/Chart-Series.md b/File-Formats/Presentation/Charts/Chart-Series.md index 468c4dfee..3535b9fe2 100644 --- a/File-Formats/Presentation/Charts/Chart-Series.md +++ b/File-Formats/Presentation/Charts/Chart-Series.md @@ -6,7 +6,7 @@ control: PowerPoint documentation: UG --- -# Chart Series +# Chart Series in PowerPoint In a chart, a **series** represents a set of related data points, often depicted using lines, bars, or markers to show data trends or comparisons. Using Presentation, you can **customize the series in the chart**. diff --git a/File-Formats/Presentation/Charts/Chart-Title.md b/File-Formats/Presentation/Charts/Chart-Title.md index f75efa800..3d0fed662 100644 --- a/File-Formats/Presentation/Charts/Chart-Title.md +++ b/File-Formats/Presentation/Charts/Chart-Title.md @@ -6,7 +6,7 @@ control: PowerPoint documentation: UG --- -# Chart Title +# Chart Title in PowerPoint Chart title is a concise description at the top of a chart, offering context and clarity for the data displayed. Using Presentation, you can **customize the chart title in the chart**.