From 7de688cbf39d608cbcfcb7eca95d77fa768ae541 Mon Sep 17 00:00:00 2001 From: Lokesh Baskar Date: Tue, 19 Dec 2023 11:21:23 +0530 Subject: [PATCH 01/18] Added github link for fallback font code snippet --- File-Formats/DocIO/word-to-image.md | 8 ++++++++ File-Formats/DocIO/word-to-pdf.md | 8 ++++++++ File-Formats/Presentation/Presentation-to-PDF.md | 8 ++++++++ File-Formats/Presentation/Presentation-to-image.md | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/File-Formats/DocIO/word-to-image.md b/File-Formats/DocIO/word-to-image.md index 0fe6661c2..0c6f9077e 100644 --- a/File-Formats/DocIO/word-to-image.md +++ b/File-Formats/DocIO/word-to-image.md @@ -382,6 +382,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which DocIO considers internally when converting a Word document to an Image. @@ -433,6 +435,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Word to Image conversion. @@ -486,6 +490,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a Word document to an Image. @@ -535,6 +541,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET Word library (DocIO) in Word to Image conversion. diff --git a/File-Formats/DocIO/word-to-pdf.md b/File-Formats/DocIO/word-to-pdf.md index 541615013..253c451ee 100644 --- a/File-Formats/DocIO/word-to-pdf.md +++ b/File-Formats/DocIO/word-to-pdf.md @@ -1772,6 +1772,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which DocIO considers internally when converting a Word document to PDF. @@ -1877,6 +1879,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Word to PDF conversion. @@ -1984,6 +1988,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a Word document to PDF. @@ -2083,6 +2089,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET Word library (DocIO) in Word to PDF conversion. diff --git a/File-Formats/Presentation/Presentation-to-PDF.md b/File-Formats/Presentation/Presentation-to-PDF.md index 27bbe0b5e..6db0144a7 100644 --- a/File-Formats/Presentation/Presentation-to-PDF.md +++ b/File-Formats/Presentation/Presentation-to-PDF.md @@ -430,6 +430,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which Presentation considers internally when converting a PowerPoint presentation to PDF. @@ -542,6 +544,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in presentation to PDF conversion. @@ -653,6 +657,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a PowerPoint presentation to PDF. @@ -753,6 +759,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET PowerPoint library (Presentation) in Presentation to PDF conversion. diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md index 55b7cee36..e388ca664 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -581,6 +581,8 @@ using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Ope {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which Presentation considers internally when converting a PowerPoint presentation to an Image. @@ -628,6 +630,8 @@ using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Ope {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Presentation to Image conversion. @@ -676,6 +680,8 @@ using (FileStream fileStreamInput = new FileStream(@"Template.pptx", FileMode.Op {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a PowerPoint presentation to an Image. @@ -720,6 +726,8 @@ using (FileStream fileStreamInput = new FileStream(@"Template.pptx", FileMode.Op {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET PowerPoint library (Presentation) in Presentation to Image conversion. From 994b858dd50cda63a4173a6cba1289877051fc43 Mon Sep 17 00:00:00 2001 From: jeyalakshmit Date: Tue, 19 Dec 2023 17:14:42 +0530 Subject: [PATCH 02/18] 862721-UG documentation Volume 4 features - Split Tags --- File-Formats/PDF/Split-Documents.md | 75 +++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/File-Formats/PDF/Split-Documents.md b/File-Formats/PDF/Split-Documents.md index 7d86b3ac2..c76f5e384 100644 --- a/File-Formats/PDF/Split-Documents.md +++ b/File-Formats/PDF/Split-Documents.md @@ -366,3 +366,78 @@ loadedDocument.Close(True) {% endtabs %} Download a complete working sample from GitHub. + +## Import Tagged structure when Splitting PDF Documents + +The Syncfusion PDF library enables the splitting of PDF documents and offers the capability to import tagged structure during the process. By enabling the `SplitTags` property on the `PdfSplitOptions` class, thereby tagged structure will be imported into the final PDF document. The default value for this property is false. + +{% tabs %} + +{% highlight c# tabtitle="C# [Cross-platform]" %} + +//Load the existing PDF file. +PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open)); +//Subscribe to the document split event. +loadDocument.DocumentSplitEvent += LoadDocument_DocumentSplitEvent; +void LoadDocument_DocumentSplitEvent(object sender, PdfDocumentSplitEventArgs args) +{ + //Save the resulting document. + FileStream outputStream = new FileStream(Guid.NewGuid().ToString() + ".pdf", FileMode.CreateNew); + args.PdfDocumentData.CopyTo(outputStream); + outputStream.Close(); +} +//Create the split options object. +PdfSplitOptions splitOptions = new PdfSplitOptions(); +//Enable the Split tags property. +splitOptions.SplitTags = true; +//Split the document by ranges. +loadDocument.SplitByRanges(new int[,] { { 0, 1 }, { 1, 2 } }, splitOptions); + +//Close the document. +loadDocument.Close(true); + +{% endhighlight %} + +{% highlight c# tabtitle="C# [Windows-specific]" %} + +//Create the values. +int[,] values = new int[,] { { 0, 1 }, { 1, 2 } }; +//Load the PDF document. +PdfLoadedDocument loadedDocument = new PdfLoadedDocument("Input.pdf"); +//Set an output file pattern. +const string destinationFilePattern = "Output{0}.pdf"; +//Create the split options object. +PdfSplitOptions splitOptions = new PdfSplitOptions(); +//Enable the Split tags property. +splitOptions.SplitTags = true; +//Split the document by ranges. +loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions); + +//Close the document. +loadedDocument.Close(true); + +{% endhighlight %} + +{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} + +'Create the values. +Dim values As Integer(,) = New Integer(,) {{0, 1},{1, 2}} +'Load the PDF document. +Dim loadedDocument As New PdfLoadedDocument("Input.pdf") +'Set an output path. +Const destinationFilePattern As String = "Output" + "{0}.pdf" +'Create the split options object. +Dim splitOptions As New PdfSplitOptions(); +'Enable the Split tags property. +splitOptions.SplitTags = True +'Split the document by ranges. +loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions) + +'Close the document. +loadedDocument.Close(True) + +{% endhighlight %} + +{% endtabs %} + +Download a complete working sample from GitHub. \ No newline at end of file From f8b936e9023ed23f0ff1e3d490d0fdca4b789ab5 Mon Sep 17 00:00:00 2001 From: jeyalakshmit Date: Tue, 19 Dec 2023 18:38:39 +0530 Subject: [PATCH 03/18] content review changes --- File-Formats/PDF/Split-Documents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/File-Formats/PDF/Split-Documents.md b/File-Formats/PDF/Split-Documents.md index c76f5e384..b6309a6b0 100644 --- a/File-Formats/PDF/Split-Documents.md +++ b/File-Formats/PDF/Split-Documents.md @@ -375,7 +375,7 @@ The Syncfusion PDF library enables the splitting of PDF documents and offers the {% highlight c# tabtitle="C# [Cross-platform]" %} -//Load the existing PDF file. +//Load an existing PDF file. PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open)); //Subscribe to the document split event. loadDocument.DocumentSplitEvent += LoadDocument_DocumentSplitEvent; From a38247337571a1920383fc6433ebf25075caa24f Mon Sep 17 00:00:00 2001 From: jeyalakshmit Date: Wed, 20 Dec 2023 11:25:03 +0530 Subject: [PATCH 04/18] github sample link added --- File-Formats/PDF/Split-Documents.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/File-Formats/PDF/Split-Documents.md b/File-Formats/PDF/Split-Documents.md index b6309a6b0..4876841be 100644 --- a/File-Formats/PDF/Split-Documents.md +++ b/File-Formats/PDF/Split-Documents.md @@ -365,7 +365,7 @@ loadedDocument.Close(True) {% endtabs %} -Download a complete working sample from GitHub. +Download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Split%20PDFs/Remove-Unused-Resources-when-Splitting-PDF-Documents/.NET). ## Import Tagged structure when Splitting PDF Documents @@ -440,4 +440,4 @@ loadedDocument.Close(True) {% endtabs %} -Download a complete working sample from GitHub. \ No newline at end of file +Download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Split%20PDFs/Import-tagged-structure-when-splitting-PDF-documents/.NET). \ No newline at end of file From 44ba870d25879aebd2e481040f389eaac9c5e634 Mon Sep 17 00:00:00 2001 From: Deepak Raj Sundar Date: Fri, 5 Jan 2024 18:45:00 +0530 Subject: [PATCH 05/18] Added additional platforms in File-Formats/Release-Notes/v24.1.44.md --- File-Formats/Release-Notes/v24.1.44.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/File-Formats/Release-Notes/v24.1.44.md b/File-Formats/Release-Notes/v24.1.44.md index 517a3caf0..45a71dd07 100644 --- a/File-Formats/Release-Notes/v24.1.44.md +++ b/File-Formats/Release-Notes/v24.1.44.md @@ -20,6 +20,12 @@ documentation: ug * [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/24.1.44#docio){:target="_blank"} * [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/24.1.44#docio){:target="_blank"} * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#docio){:target="_blank"} +* [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#docio){:target="_blank"} +* [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#docio){:target="_blank"} +* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#docio){:target="_blank"} +* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#docio){:target="_blank"} +* [Flutter Release Notes](/flutter/release-notes/v24.1.44#docio){:target="_blank"} +* [WinUI Release Notes](/winui/release-notes/v24.1.44#docio){:target="_blank"} * [UWP Release Notes](/uwp/release-notes/v24.1.44#docio){:target="_blank"} * [Windows Forms Release Notes](/windowsforms/release-notes/v24.1.44#docio){:target="_blank"} * [WPF Release Notes](/wpf/release-notes/v24.1.44#docio){:target="_blank"} @@ -36,6 +42,12 @@ documentation: ug * [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/24.1.44#pdf){:target="_blank"} * [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/24.1.44#pdf){:target="_blank"} * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#pdf){:target="_blank"} +* [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#pdf){:target="_blank"} +* [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#pdf){:target="_blank"} +* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#pdf){:target="_blank"} +* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#pdf){:target="_blank"} +* [Flutter Release Notes](/flutter/release-notes/v24.1.44#pdf){:target="_blank"} +* [WinUI Release Notes](/winui/release-notes/v24.1.44#pdf){:target="_blank"} * [UWP Release Notes](/uwp/release-notes/v24.1.44#pdf){:target="_blank"} * [Windows Forms Release Notes](/windowsforms/release-notes/v24.1.44#pdf){:target="_blank"} * [WPF Release Notes](/wpf/release-notes/v24.1.44#pdf){:target="_blank"} @@ -51,6 +63,12 @@ documentation: ug * [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/24.1.44#presentation){:target="_blank"} * [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/24.1.44#presentation){:target="_blank"} * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#presentation){:target="_blank"} +* [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#presentation){:target="_blank"} +* [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#presentation){:target="_blank"} +* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#presentation){:target="_blank"} +* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#presentation){:target="_blank"} +* [Flutter Release Notes](/flutter/release-notes/v24.1.44#presentation){:target="_blank"} +* [WinUI Release Notes](/winui/release-notes/v24.1.44#presentation){:target="_blank"} * [Windows Forms Release Notes](/windowsforms/release-notes/v24.1.44#presentation){:target="_blank"} * [WPF Release Notes](/wpf/release-notes/v24.1.44#presentation){:target="_blank"} * [UWP Release Notes](/uwp/release-notes/v24.1.44#presentation){:target="_blank"} @@ -67,6 +85,12 @@ documentation: ug * [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/24.1.44#xlsio){:target="_blank"} * [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/24.1.44#xlsio){:target="_blank"} * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#xlsio){:target="_blank"} +* [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#xlsio){:target="_blank"} +* [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#xlsio){:target="_blank"} +* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#xlsio){:target="_blank"} +* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#xlsio){:target="_blank"} +* [Flutter Release Notes](/flutter/release-notes/v24.1.44#xlsio){:target="_blank"} +* [WinUI Release Notes](/winui/release-notes/v24.1.44#xlsio){:target="_blank"} * [UWP Release Notes](/uwp/release-notes/v24.1.44#xlsio){:target="_blank"} * [Windows Forms Release Notes](/windowsforms/release-notes/v24.1.44#xlsio){:target="_blank"} * [WPF Release Notes](/wpf/release-notes/v24.1.44#xlsio){:target="_blank"} From 44b35f6b58e1c98c38bfda98aef229f19892c944 Mon Sep 17 00:00:00 2001 From: Deepak Raj Sundar Date: Fri, 5 Jan 2024 20:26:46 +0530 Subject: [PATCH 06/18] Added the missed "/" before the Xamarin.Android Release Notes urls in File-Formats/Release-Notes/v24.1.44.md --- File-Formats/Release-Notes/v24.1.44.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/File-Formats/Release-Notes/v24.1.44.md b/File-Formats/Release-Notes/v24.1.44.md index 45a71dd07..e12dd14cd 100644 --- a/File-Formats/Release-Notes/v24.1.44.md +++ b/File-Formats/Release-Notes/v24.1.44.md @@ -22,7 +22,7 @@ documentation: ug * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#docio){:target="_blank"} * [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#docio){:target="_blank"} * [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#docio){:target="_blank"} -* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#docio){:target="_blank"} +* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v24.1.44#docio){:target="_blank"} * [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#docio){:target="_blank"} * [Flutter Release Notes](/flutter/release-notes/v24.1.44#docio){:target="_blank"} * [WinUI Release Notes](/winui/release-notes/v24.1.44#docio){:target="_blank"} @@ -44,7 +44,7 @@ documentation: ug * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#pdf){:target="_blank"} * [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#pdf){:target="_blank"} * [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#pdf){:target="_blank"} -* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#pdf){:target="_blank"} +* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v24.1.44#pdf){:target="_blank"} * [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#pdf){:target="_blank"} * [Flutter Release Notes](/flutter/release-notes/v24.1.44#pdf){:target="_blank"} * [WinUI Release Notes](/winui/release-notes/v24.1.44#pdf){:target="_blank"} @@ -65,7 +65,7 @@ documentation: ug * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#presentation){:target="_blank"} * [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#presentation){:target="_blank"} * [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#presentation){:target="_blank"} -* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#presentation){:target="_blank"} +* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v24.1.44#presentation){:target="_blank"} * [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#presentation){:target="_blank"} * [Flutter Release Notes](/flutter/release-notes/v24.1.44#presentation){:target="_blank"} * [WinUI Release Notes](/winui/release-notes/v24.1.44#presentation){:target="_blank"} @@ -87,7 +87,7 @@ documentation: ug * [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/24.1.44#xlsio){:target="_blank"} * [.NET MAUI Release Notes](/maui/release-notes/v24.1.44#xlsio){:target="_blank"} * [Xamarin.Forms Release Notes](/xamarin/release-notes/v24.1.44#xlsio){:target="_blank"} -* [Xamarin.Android Release Notes](xamarin-android/release-notes/v24.1.44#xlsio){:target="_blank"} +* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v24.1.44#xlsio){:target="_blank"} * [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v24.1.44#xlsio){:target="_blank"} * [Flutter Release Notes](/flutter/release-notes/v24.1.44#xlsio){:target="_blank"} * [WinUI Release Notes](/winui/release-notes/v24.1.44#xlsio){:target="_blank"} From 41c34af0aa35e3f4d8675650da7fc2a428e93698 Mon Sep 17 00:00:00 2001 From: BrunoJenson Date: Mon, 8 Jan 2024 18:06:06 +0530 Subject: [PATCH 07/18] Update File-Formats overview files --- File-Formats/DocIO/Overview.md | 3 +++ File-Formats/PDF/Overview.md | 3 +++ File-Formats/Presentation/Overview.md | 3 +++ File-Formats/XlsIO/Overview.md | 3 +++ File-Formats/introduction.md | 2 ++ 5 files changed, 14 insertions(+) diff --git a/File-Formats/DocIO/Overview.md b/File-Formats/DocIO/Overview.md index e6c1591b5..5dbf3d5bb 100644 --- a/File-Formats/DocIO/Overview.md +++ b/File-Formats/DocIO/Overview.md @@ -5,6 +5,9 @@ platform: file-formats control: DocIO documentation: UG --- + +> With the 2024 Volume 1 release, we will discontinue support for .NET Framework 4.5, 4.5.1, and 4.6 in WinForms, WPF, and the File-Format Frameworks. Instead, we will provide support for .NET 4.6.2. + # Overview of Word library (DocIO) Essential DocIO is a native [.NET Word library](https://www.syncfusion.com/document-processing/word-framework/net) that is used by developers to create, read, write, and convert Microsoft Word documents by using C#, VB.NET, and managed C++ code from any of the following .NET platforms - [Windows Forms](https://help.syncfusion.com/file-formats/docio/create-word-document-in-windows-forms), [WPF](https://help.syncfusion.com/file-formats/docio/create-word-document-in-wpf), [ASP.NET](https://help.syncfusion.com/file-formats/docio/create-word-document-in-asp-net), [ASP.NET MVC](https://help.syncfusion.com/file-formats/docio/create-word-document-in-asp-net-mvc), [ASP.NET Core](https://help.syncfusion.com/file-formats/docio/create-word-document-in-asp-net-core), [Blazor](https://help.syncfusion.com/file-formats/docio/create-word-document-in-blazor), [WPF](https://help.syncfusion.com/file-formats/docio/create-word-document-in-wpf), [Xamarin](https://help.syncfusion.com/file-formats/docio/create-word-document-in-xamarin), [WinUI](https://help.syncfusion.com/file-formats/docio/create-word-document-in-winui) and [.NET MAUI applications](https://help.syncfusion.com/file-formats/docio/create-word-document-in-maui). diff --git a/File-Formats/PDF/Overview.md b/File-Formats/PDF/Overview.md index 01f8ec905..95acd6e5f 100644 --- a/File-Formats/PDF/Overview.md +++ b/File-Formats/PDF/Overview.md @@ -5,6 +5,9 @@ platform: file-formats control: PDF documentation: UG --- + +> With the 2024 Volume 1 release, we will discontinue support for .NET Framework 4.5, 4.5.1, and 4.6 in WinForms, WPF, and the File-Format Frameworks. Instead, we will provide support for .NET 4.6.2. + # Overview of PDF Framework The PDF framework is a feature rich [.NET PDF class library](https://www.syncfusion.com/document-processing/pdf-framework/net) developed with 100% managed C# code that can be used to create, read and write PDF. The library can be used in [Windows Forms](https://www.syncfusion.com/document-processing/pdf-framework/net), [WPF](https://www.syncfusion.com/document-processing/pdf-framework/net), [ASP.NET Web Forms](https://www.syncfusion.com/document-processing/pdf-framework/net), [ASP.NET MVC](https://www.syncfusion.com/document-processing/pdf-framework/net), [ASP.NET Core](https://www.syncfusion.com/document-processing/pdf-framework/net-core), [Blazor](https://www.syncfusion.com/document-processing/pdf-framework/blazor), [UWP](https://www.syncfusion.com/document-processing/pdf-framework/uwp), [Xamarin](https://www.syncfusion.com/document-processing/pdf-framework/xamarin), [Flutter](https://www.syncfusion.com/document-processing/pdf-framework/flutter) applications and Unity platform without the dependency of Adobe Acrobat. The creation of PDF follows the most popular PDF 1.7 (ISO 32000-1) and latest PDF 2.0 (ISO 32000-2) specifications. diff --git a/File-Formats/Presentation/Overview.md b/File-Formats/Presentation/Overview.md index b8dcd1183..7548321ef 100644 --- a/File-Formats/Presentation/Overview.md +++ b/File-Formats/Presentation/Overview.md @@ -5,6 +5,9 @@ platform: file-formats control: Presentation documentation: UG --- + +> With the 2024 Volume 1 release, we will discontinue support for .NET Framework 4.5, 4.5.1, and 4.6 in WinForms, WPF, and the File-Format Frameworks. Instead, we will provide support for .NET 4.6.2. + # Overview of PowerPoint Presentation The PowerPoint framework is a feature rich [.NET PowerPoint class library](https://www.syncfusion.com/document-processing/powerpoint-framework/net) that can be used by developers to create, read, and write Microsoft PowerPoint files by using C#, VB.NET, and managed C++ code. The library can be used in [Windows Forms](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-windows-forms), [WPF](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-wpf), [ASP.NET Web Forms](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-asp-net-web-forms), [ASP.NET MVC](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-asp-net-mvc), [ASP.NET Core](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-asp-net-core-c-sharp), [Blazor](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-blazor), [UWP](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-uwp), [Xamarin](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-xamarin), [WinUI](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-winui) and [.NET MAUI](https://help.syncfusion.com/file-formats/presentation/create-read-edit-powerpoint-files-in-maui) applications. diff --git a/File-Formats/XlsIO/Overview.md b/File-Formats/XlsIO/Overview.md index 65b0f454a..b2c5649c6 100644 --- a/File-Formats/XlsIO/Overview.md +++ b/File-Formats/XlsIO/Overview.md @@ -5,6 +5,9 @@ platform: file-formats control: XlsIO documentation: UG --- + +> With the 2024 Volume 1 release, we will discontinue support for .NET Framework 4.5, 4.5.1, and 4.6 in WinForms, WPF, and the File-Format Frameworks. Instead, we will provide support for .NET 4.6.2. + # Overview of Syncfusion Excel (XlsIO) library [**Essential XlsIO**](https://www.syncfusion.com/document-processing/excel-framework/net) is a native **.****NET** class library that can be used to create and modify **Microsoft** **Excel** files by using C#, VB.NET and managed C++ code. It is a non-UI component that provides a full-fledged object model that facilitates accessing & manipulating the spreadsheets without any dependency of Microsoft Office COM libraries & Microsoft Office. diff --git a/File-Formats/introduction.md b/File-Formats/introduction.md index 643351ce4..7c613a986 100644 --- a/File-Formats/introduction.md +++ b/File-Formats/introduction.md @@ -7,6 +7,8 @@ documentation: UG keywords: PDF, Excel, Word, PowerPoint, Office, SDK, Automation, API, create, edit, convert, read --- +> With the 2024 Volume 1 release, we will discontinue support for .NET Framework 4.5, 4.5.1, and 4.6 in WinForms, WPF, and the File-Format Frameworks. Instead, we will provide support for .NET 4.6.2. + # Welcome to Syncfusion Essential File Formats Platform Essential File Formats is a collection of .NET class libraries to create, edit, write, and convert PDF, Excel, Word, and PowerPoint file formats in .NET Framework [C#, VB.NET], .NET Core, UWP, and Xamarin applications without Microsoft Office or Adobe dependencies. From c9417f5e23be5f3ed527580177cb0d411bffa6d9 Mon Sep 17 00:00:00 2001 From: JeyaseelanM Date: Fri, 12 Jan 2024 12:33:35 +0530 Subject: [PATCH 08/18] 179189 - Eileformats MAC UG created --- File-Formats-toc.html | 50 +++++++++++ .../linux-installer/how-to-install.md | 2 +- .../mac-installer/how-to-download.md | 79 ++++++++++++++++++ .../mac-installer/how-to-install.md | 79 ++++++++++++++++++ .../mac-installer/images/Download_img1.png | Bin 0 -> 22026 bytes .../mac-installer/images/Download_img2.png | Bin 0 -> 26798 bytes .../mac-installer/images/Download_img3.png | Bin 0 -> 26949 bytes .../images/Mac_Catalina_MacOS_Alert1.png | Bin 0 -> 70745 bytes .../images/Mac_Catalina_MacOS_Alert2.png | Bin 0 -> 38785 bytes .../mac-installer/images/Mac_Download.PNG | Bin 0 -> 63012 bytes .../mac-installer/images/Mac_Installer1.png | Bin 0 -> 69255 bytes .../mac-installer/images/Mac_Installer10.png | Bin 0 -> 159045 bytes .../mac-installer/images/Mac_Installer2.png | Bin 0 -> 204238 bytes .../mac-installer/images/Mac_Installer3.png | Bin 0 -> 196543 bytes .../mac-installer/images/Mac_Installer5.png | Bin 0 -> 99827 bytes .../mac-installer/images/Mac_Installer6.png | Bin 0 -> 73148 bytes .../mac-installer/images/Mac_Installer7.png | Bin 0 -> 95830 bytes .../mac-installer/images/Mac_Installer8.png | Bin 0 -> 57206 bytes .../mac-installer/images/Mac_Installer9.png | Bin 0 -> 78432 bytes .../mac-installer/images/license-download.png | Bin 0 -> 26991 bytes .../images/license-installer.png | Bin 0 -> 26991 bytes .../images/start-trial-download-installer.png | Bin 0 -> 23612 bytes ...start-trial-download-offline-installer.png | Bin 0 -> 21778 bytes .../images/start-trial-download.png | Bin 0 -> 25420 bytes .../images/trial-confirmation.png | Bin 0 -> 90578 bytes .../mac-installer/images/trial-download.png | Bin 0 -> 21974 bytes .../linux-installer/how-to-install.md | 2 +- .../mac-installer/how-to-download.md | 79 ++++++++++++++++++ .../mac-installer/how-to-install.md | 79 ++++++++++++++++++ .../mac-installer/images/Download_img1.png | Bin 0 -> 22026 bytes .../mac-installer/images/Download_img2.png | Bin 0 -> 26798 bytes .../mac-installer/images/Download_img3.png | Bin 0 -> 26949 bytes .../images/Mac_Catalina_MacOS_Alert1.png | Bin 0 -> 70745 bytes .../images/Mac_Catalina_MacOS_Alert2.png | Bin 0 -> 38785 bytes .../mac-installer/images/Mac_Download.PNG | Bin 0 -> 63012 bytes .../mac-installer/images/Mac_Installer1.png | Bin 0 -> 64610 bytes .../mac-installer/images/Mac_Installer10.png | Bin 0 -> 158959 bytes .../mac-installer/images/Mac_Installer2.png | Bin 0 -> 204867 bytes .../mac-installer/images/Mac_Installer3.png | Bin 0 -> 191586 bytes .../mac-installer/images/Mac_Installer5.png | Bin 0 -> 93105 bytes .../mac-installer/images/Mac_Installer6.png | Bin 0 -> 73744 bytes .../mac-installer/images/Mac_Installer7.png | Bin 0 -> 107604 bytes .../mac-installer/images/Mac_Installer8.png | Bin 0 -> 51350 bytes .../mac-installer/images/Mac_Installer9.png | Bin 0 -> 72346 bytes .../mac-installer/images/license-download.png | Bin 0 -> 26991 bytes .../images/license-installer.png | Bin 0 -> 26991 bytes .../images/start-trial-download-installer.png | Bin 0 -> 23612 bytes ...start-trial-download-offline-installer.png | Bin 0 -> 21778 bytes .../images/start-trial-download.png | Bin 0 -> 25420 bytes .../images/trial-confirmation.png | Bin 0 -> 90578 bytes .../mac-installer/images/trial-download.png | Bin 0 -> 21974 bytes .../linux-installer/how-to-install.md | 2 +- .../mac-installer/how-to-download.md | 79 ++++++++++++++++++ .../mac-installer/how-to-install.md | 79 ++++++++++++++++++ .../mac-installer/images/Download_img1.png | Bin 0 -> 22026 bytes .../mac-installer/images/Download_img2.png | Bin 0 -> 26798 bytes .../mac-installer/images/Download_img3.png | Bin 0 -> 26949 bytes .../images/Mac_Catalina_MacOS_Alert1.png | Bin 0 -> 70745 bytes .../images/Mac_Catalina_MacOS_Alert2.png | Bin 0 -> 38785 bytes .../mac-installer/images/Mac_Download.PNG | Bin 0 -> 63012 bytes .../mac-installer/images/Mac_Installer1.png | Bin 0 -> 66460 bytes .../mac-installer/images/Mac_Installer10.png | Bin 0 -> 160127 bytes .../mac-installer/images/Mac_Installer2.png | Bin 0 -> 204664 bytes .../mac-installer/images/Mac_Installer3.png | Bin 0 -> 193515 bytes .../mac-installer/images/Mac_Installer5.png | Bin 0 -> 97923 bytes .../mac-installer/images/Mac_Installer6.png | Bin 0 -> 76353 bytes .../mac-installer/images/Mac_Installer7.png | Bin 0 -> 105900 bytes .../mac-installer/images/Mac_Installer8.png | Bin 0 -> 63211 bytes .../mac-installer/images/Mac_Installer9.png | Bin 0 -> 79408 bytes .../mac-installer/images/license-download.png | Bin 0 -> 26991 bytes .../images/license-installer.png | Bin 0 -> 26991 bytes .../images/start-trial-download-installer.png | Bin 0 -> 23612 bytes ...start-trial-download-offline-installer.png | Bin 0 -> 21778 bytes .../images/start-trial-download.png | Bin 0 -> 25420 bytes .../images/trial-confirmation.png | Bin 0 -> 90578 bytes .../mac-installer/images/trial-download.png | Bin 0 -> 21974 bytes .../linux-installer/how-to-install.md | 2 +- .../mac-installer/how-to-download.md | 79 ++++++++++++++++++ .../mac-installer/how-to-install.md | 79 ++++++++++++++++++ .../mac-installer/images/Download_img1.png | Bin 0 -> 22026 bytes .../mac-installer/images/Download_img2.png | Bin 0 -> 26798 bytes .../mac-installer/images/Download_img3.png | Bin 0 -> 26949 bytes .../images/Mac_Catalina_MacOS_Alert1.png | Bin 0 -> 70745 bytes .../images/Mac_Catalina_MacOS_Alert2.png | Bin 0 -> 38785 bytes .../mac-installer/images/Mac_Download.PNG | Bin 0 -> 63012 bytes .../mac-installer/images/Mac_Installer1.png | Bin 0 -> 64190 bytes .../mac-installer/images/Mac_Installer10.png | Bin 0 -> 156873 bytes .../mac-installer/images/Mac_Installer2.png | Bin 0 -> 204867 bytes .../mac-installer/images/Mac_Installer3.png | Bin 0 -> 194154 bytes .../mac-installer/images/Mac_Installer5.png | Bin 0 -> 96181 bytes .../mac-installer/images/Mac_Installer6.png | Bin 0 -> 75151 bytes .../mac-installer/images/Mac_Installer7.png | Bin 0 -> 118100 bytes .../mac-installer/images/Mac_Installer8.png | Bin 0 -> 62143 bytes .../mac-installer/images/Mac_Installer9.png | Bin 0 -> 74122 bytes .../mac-installer/images/license-download.png | Bin 0 -> 26991 bytes .../images/license-installer.png | Bin 0 -> 26991 bytes .../images/start-trial-download-installer.png | Bin 0 -> 23612 bytes ...start-trial-download-offline-installer.png | Bin 0 -> 21778 bytes .../images/start-trial-download.png | Bin 0 -> 25420 bytes .../images/trial-confirmation.png | Bin 0 -> 90578 bytes .../mac-installer/images/trial-download.png | Bin 0 -> 21974 bytes .../linux-installer/how-to-install.md | 2 +- .../mac-installer/how-to-download.md | 79 ++++++++++++++++++ .../mac-installer/how-to-install.md | 79 ++++++++++++++++++ .../mac-installer/images/Download_img1.png | Bin 0 -> 22026 bytes .../mac-installer/images/Download_img2.png | Bin 0 -> 26798 bytes .../mac-installer/images/Download_img3.png | Bin 0 -> 26949 bytes .../images/Mac_Catalina_MacOS_Alert1.png | Bin 0 -> 70745 bytes .../images/Mac_Catalina_MacOS_Alert2.png | Bin 0 -> 38785 bytes .../mac-installer/images/Mac_Download.PNG | Bin 0 -> 63012 bytes .../mac-installer/images/Mac_Installer1.png | Bin 0 -> 68202 bytes .../mac-installer/images/Mac_Installer10.png | Bin 0 -> 166082 bytes .../mac-installer/images/Mac_Installer2.png | Bin 0 -> 207268 bytes .../mac-installer/images/Mac_Installer3.png | Bin 0 -> 195142 bytes .../mac-installer/images/Mac_Installer5.png | Bin 0 -> 99827 bytes .../mac-installer/images/Mac_Installer6.png | Bin 0 -> 82045 bytes .../mac-installer/images/Mac_Installer7.png | Bin 0 -> 104491 bytes .../mac-installer/images/Mac_Installer8.png | Bin 0 -> 69117 bytes .../mac-installer/images/Mac_Installer9.png | Bin 0 -> 74826 bytes .../mac-installer/images/license-download.png | Bin 0 -> 26991 bytes .../images/license-installer.png | Bin 0 -> 26991 bytes .../images/start-trial-download-installer.png | Bin 0 -> 23612 bytes ...start-trial-download-offline-installer.png | Bin 0 -> 21778 bytes .../images/start-trial-download.png | Bin 0 -> 25420 bytes .../images/trial-confirmation.png | Bin 0 -> 90578 bytes .../mac-installer/images/trial-download.png | Bin 0 -> 21974 bytes 126 files changed, 845 insertions(+), 5 deletions(-) create mode 100644 File-Formats/DocIO/installation/mac-installer/how-to-download.md create mode 100644 File-Formats/DocIO/installation/mac-installer/how-to-install.md create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Download_img1.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Download_img2.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Download_img3.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Catalina_MacOS_Alert1.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Catalina_MacOS_Alert2.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Download.PNG create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer1.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer10.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer2.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer3.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer5.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer6.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer7.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer8.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/Mac_Installer9.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/license-download.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/license-installer.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/start-trial-download-installer.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/start-trial-download-offline-installer.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/start-trial-download.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/trial-confirmation.png create mode 100644 File-Formats/DocIO/installation/mac-installer/images/trial-download.png create mode 100644 File-Formats/PDF/installation/mac-installer/how-to-download.md create mode 100644 File-Formats/PDF/installation/mac-installer/how-to-install.md create mode 100644 File-Formats/PDF/installation/mac-installer/images/Download_img1.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Download_img2.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Download_img3.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Catalina_MacOS_Alert1.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Catalina_MacOS_Alert2.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Download.PNG create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer1.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer10.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer2.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer3.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer5.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer6.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer7.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer8.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/Mac_Installer9.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/license-download.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/license-installer.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/start-trial-download-installer.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/start-trial-download-offline-installer.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/start-trial-download.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/trial-confirmation.png create mode 100644 File-Formats/PDF/installation/mac-installer/images/trial-download.png create mode 100644 File-Formats/Presentation/installation/mac-installer/how-to-download.md create mode 100644 File-Formats/Presentation/installation/mac-installer/how-to-install.md create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Download_img1.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Download_img2.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Download_img3.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Catalina_MacOS_Alert1.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Catalina_MacOS_Alert2.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Download.PNG create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer1.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer10.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer2.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer3.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer5.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer6.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer7.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer8.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/Mac_Installer9.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/license-download.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/license-installer.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/start-trial-download-installer.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/start-trial-download-offline-installer.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/start-trial-download.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/trial-confirmation.png create mode 100644 File-Formats/Presentation/installation/mac-installer/images/trial-download.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/how-to-download.md create mode 100644 File-Formats/XlsIO/installation/mac-installer/how-to-install.md create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Download_img1.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Download_img2.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Download_img3.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Catalina_MacOS_Alert1.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Catalina_MacOS_Alert2.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Download.PNG create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer1.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer10.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer2.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer3.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer5.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer6.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer7.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer8.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/Mac_Installer9.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/license-download.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/license-installer.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/start-trial-download-installer.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/start-trial-download-offline-installer.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/start-trial-download.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/trial-confirmation.png create mode 100644 File-Formats/XlsIO/installation/mac-installer/images/trial-download.png create mode 100644 File-Formats/installation/mac-installer/how-to-download.md create mode 100644 File-Formats/installation/mac-installer/how-to-install.md create mode 100644 File-Formats/installation/mac-installer/images/Download_img1.png create mode 100644 File-Formats/installation/mac-installer/images/Download_img2.png create mode 100644 File-Formats/installation/mac-installer/images/Download_img3.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Catalina_MacOS_Alert1.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Catalina_MacOS_Alert2.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Download.PNG create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer1.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer10.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer2.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer3.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer5.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer6.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer7.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer8.png create mode 100644 File-Formats/installation/mac-installer/images/Mac_Installer9.png create mode 100644 File-Formats/installation/mac-installer/images/license-download.png create mode 100644 File-Formats/installation/mac-installer/images/license-installer.png create mode 100644 File-Formats/installation/mac-installer/images/start-trial-download-installer.png create mode 100644 File-Formats/installation/mac-installer/images/start-trial-download-offline-installer.png create mode 100644 File-Formats/installation/mac-installer/images/start-trial-download.png create mode 100644 File-Formats/installation/mac-installer/images/trial-confirmation.png create mode 100644 File-Formats/installation/mac-installer/images/trial-download.png diff --git a/File-Formats-toc.html b/File-Formats-toc.html index 0c5eb6e7c..1f9b32730 100644 --- a/File-Formats-toc.html +++ b/File-Formats-toc.html @@ -29,6 +29,16 @@ How to Install? + +
  • Mac Installer +
  • Linux Installer
      @@ -181,6 +191,16 @@
  • +
  • Mac Installer + +
  • Linux Installer
    • @@ -682,6 +702,16 @@
  • +
  • Mac Installer + +
  • Linux Installer
    • @@ -986,6 +1016,16 @@
  • +
  • Mac Installer + +
  • Linux Installer
    • @@ -1433,6 +1473,16 @@
  • +
  • Mac Installer + +
  • Linux Installer