Skip to content

Commit bd7a8ff

Browse files
Merge branch 'hotfix/hotfix-v32.2.3' into EJ2-1009433-hotfix
2 parents 32a86b8 + 742bece commit bd7a8ff

21 files changed

Lines changed: 812 additions & 523 deletions

Document-Processing-toc.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6260,6 +6260,9 @@
62606260
<li>
62616261
<a href="/document-processing/excel/excel-library/net/faqs/does-xlsio-support-converting-an-empty-Excel-document-to-PDF">Does XlsIO support converting an empty Excel document to PDF?</a>
62626262
</li>
6263+
<li>
6264+
<a href="/document-processing/excel/excel-library/net/faqs/does-xlsio-preserve-text-orientation-in-excel-to-html-conversion">Does XlsIO preserve text orientation in Excel to HTML conversion?</a>
6265+
</li>
62636266
<li>
62646267
<a href="/document-processing/excel/excel-library/net/faqs/what-is-the-maximum-supported-text-length-for-data-validation-in-Excel">What is the maximum supported text length for data validation in Excel?</a>
62656268
</li>
@@ -6410,6 +6413,9 @@
64106413
<li>
64116414
<a href="/document-processing/excel/excel-library/net/faqs/how-to-retrieve-the-name-of-the-chart-in-an-Excel-worksheet">How to retrieve the name of the chart in an Excel worksheet?</a>
64126415
</li>
6416+
<li>
6417+
<a href="/document-processing/excel/excel-library/net/faqs/how-to-get-the-maximum-supported-rows-and-columns-in-an-excel-worksheet">How to get the maximum rows and columns in a worksheet using XlsIO?</a>
6418+
</li>
64136419
</ul>
64146420
</li>
64156421
</ul>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Text Orientation in Excel to HTML Conversion | Syncfusion
3+
description: This page explains whether the Syncfusion .NET Excel library (XlsIO) preserves text orientation during Excel to HTML conversion.
4+
platform: document-processing
5+
control: XlsIO
6+
documentation: UG
7+
---
8+
9+
# Does XlsIO preserve text orientation in Excel to HTML conversion??
10+
11+
No. XlsIO does not preserve text orientation during Excel to HTML conversion. Microsoft Excel itself does not retain text orientation when exporting a worksheet as HTML, and XlsIO follows the same behavior.
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
title: Get maximum rows and columns in a worksheet | Syncfusion
3+
description: Code example to get the maximum number of rows and columns supported in an Excel worksheet using Syncfusion .NET Excel library (XlsIO).
4+
platform: document-processing
5+
control: XlsIO
6+
documentation: UG
7+
---
8+
9+
# How to get the maximum rows and columns in a worksheet using XlsIO?
10+
11+
The [MaxRowCount](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_MaxRowCount) and [MaxColumnCount](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_MaxColumnCount) properties of [IWorkbook](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html) return the maximum number of rows and columns supported in an Excel worksheet.
12+
13+
The following code examples demonstrate how to retrieve the maximum number of rows and columns supported in an Excel worksheet using C# (cross-platform and Windows-specific) and VB.NET.
14+
15+
{% tabs %}
16+
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/Maximum%20number%20of%20rows%20and%20columns%20supported/.NET/MaximumNumberOfRowsColumns/MaximumNumberOfRowsColumns/Program.cs,180" %}
17+
using (ExcelEngine excelEngine = new ExcelEngine())
18+
{
19+
IApplication application = excelEngine.Excel;
20+
application.DefaultVersion = ExcelVersion.Xlsx;
21+
IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/Input.xlsx"));
22+
IWorksheet worksheet = workbook.Worksheets[0];
23+
24+
// To get the maximum supported rows and columns
25+
int maxRow = workbook.MaxRowCount;
26+
int maxColumns = workbook.MaxColumnCount;
27+
28+
// Display the maximum number of rows and columns supported
29+
Console.WriteLine("Maximum number of rows supported: " + maxRow.ToString());
30+
Console.WriteLine("Maximum number of columns supported: " + maxColumns.ToString());
31+
}
32+
{% endhighlight %}
33+
34+
{% highlight c# tabtitle="C# [Windows-specific]" %}
35+
using (ExcelEngine excelEngine = new ExcelEngine())
36+
{
37+
IApplication application = excelEngine.Excel;
38+
application.DefaultVersion = ExcelVersion.Xlsx;
39+
IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/Input.xlsx"));
40+
IWorksheet worksheet = workbook.Worksheets[0];
41+
42+
// To get the maximum supported rows and columns
43+
int maxRow = workbook.MaxRowCount;
44+
int maxColumns = workbook.MaxColumnCount;
45+
46+
// Display the maximum number of rows and columns supported
47+
Console.WriteLine("Maximum number of rows supported: " + maxRow.ToString());
48+
Console.WriteLine("Maximum number of columns supported: " + maxColumns.ToString());
49+
}
50+
{% endhighlight %}
51+
52+
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
53+
Using excelEngine As New ExcelEngine()
54+
Dim application As IApplication = excelEngine.Excel
55+
application.DefaultVersion = ExcelVersion.Xlsx
56+
Dim workbook As IWorkbook = application.Workbooks.Open("Input.xlsx")
57+
Dim worksheet As IWorksheet = workbook.Worksheets(0)
58+
59+
' To get the maximum supported rows and columns
60+
Dim maxRow As Integer = workbook.MaxRowCount
61+
Dim maxColumns As Integer = workbook.MaxColumnCount
62+
63+
' Display the maximum number of rows and columns supported
64+
Console.WriteLine("Maximum number of rows supported: " + maxRow.ToString())
65+
Console.WriteLine("Maximum number of columns supported: " + maxColumns.ToString())
66+
End Using
67+
{% endhighlight %}
68+
{% endtabs %}
69+
70+
A complete working example in C# is present on <a href="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/Maximum%20number%20of%20rows%20and%20columns%20supported/.NET/MaximumNumberOfRowsColumns">this GitHub page</a>.

Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Output_screenshot.png renamed to Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Output.png

File renamed without changes.

Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Publish_button_screenshot.png renamed to Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Publish_button.png

File renamed without changes.

Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Publish_profile_screenshot.png renamed to Document-Processing/PDF/PDF-Library/NET/Azure_images/Azure-app-service-windows/Publish_profile.png

File renamed without changes.

Document-Processing/PDF/PDF-Library/NET/Create-PDF-document-in-Azure-App-Service-Windows.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ documentation: UG
1010

1111
The [Syncfusion<sup>&reg;</sup> .NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core) is used to create, read, edit PDF documents programmatically without the dependency of Adobe Acrobat. Using this library, you can **create PDF document in Azure App Service on Windows**.
1212

13+
Check the following video to learn how to create a PDF document and publish it as an Azure App Service on Windows using the .NET PDF Library.
14+
{% youtube "https://www.youtube.com/watch?v=PU8pVAHV_88" %}
15+
1316
## Steps to create PDF document in Azure App Service on Windows
1417

1518
Step 1: Create a new ASP.NET Core Web App (Model-View-Controller).
@@ -139,10 +142,10 @@ public IActionResult CreatePDFDocument()
139142
## Steps to publish as Azure App Service on Windows
140143

141144
Step 1: Right-click the project and select **Publish** option.
142-
![Publish option Image](Azure_images/Azure-app-service-windows/Publish_button_screenshot.png)
145+
![Publish option Image](Azure_images/Azure-app-service-windows/Publish_button.png)
143146

144147
Step 2: Click the **Add a Publish Profile** button.
145-
![Add a publish profile](Azure_images/Azure-app-service-windows/Publish_profile_screenshot.png)
148+
![Add a publish profile](Azure_images/Azure-app-service-windows/Publish_profile.png)
146149

147150
Step 3: Select the publish target as **Azure**.
148151
![Select the publish target as Azure](Azure_images/Azure-app-service-windows/Select_target.png)
@@ -172,7 +175,7 @@ Step 11: Now, the published webpage will open in the browser.
172175
![Browser will open after publish](Azure_images/Azure-app-service-windows/WebView.png)
173176

174177
Step 12: Select the PDF document and Click **Create PDF document** to create a PDF document.You will get the output PDF document as follows.
175-
![Azure App Service on Windows](Azure_images/Azure-app-service-windows/Output_screenshot.png)
178+
![Azure App Service on Windows](Azure_images/Azure-app-service-windows/Output.png)
176179

177180
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Getting%20Started/Azure/Azure%20App%20Service).
178181

Document-Processing/Word/Conversions/Word-To-Image/NET/Performance-metrics.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ The following system configurations were used for benchmarking:
2020
* **.NET Version:** .NET 8.0
2121
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.DocIORenderer.Net.Core v32.2.3](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core/32.2.3)
2222

23-
## Word to image conversion
24-
25-
## Benchmark Results.
23+
## Benchmark Results
2624

2725
The table below shows the performance results of various Word document operations, evaluated using predefined input conditions in the previously described environment.
2826

@@ -52,7 +50,7 @@ The table below shows the performance results of various Word document operation
5250
<td>{{'[GitHub-Example](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Performance-metrices/Font-Substitution-Image/)'| markdownify }}</td>
5351
</tr>
5452
<tr>
55-
<td>Use embedded word fonts</td>
53+
<td>{{'[Use embedded word fonts](https://support.syncfusion.com/kb/article/13969/how-to-resolve-font-problems-during-word-to-pdf-or-image-conversion#suggestion-3:-embed-fonts-in-docx)'| markdownify }}</td>
5654
<td>2 pages</td>
5755
<td>1.1</td>
5856
<td>{{'[GitHub-Example](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Performance-metrices/Use-embedded-Word-fonts-image/)'| markdownify }}</td>

Document-Processing/Word/Conversions/Word-To-PDF/NET/Performance-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following system configurations were used for benchmarking:
2020
* **.NET Version:** .NET 8.0
2121
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.DocIORenderer.Net.Core v32.2.3](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core/32.2.3)
2222

23-
## Benchmark Results.
23+
## Benchmark Results
2424

2525
The table below shows the performance results of various Word document operations, evaluated using predefined input conditions in the previously described environment.
2626

@@ -92,7 +92,7 @@ The table below shows the performance results of various Word document operation
9292
<td>{{'[GitHub-Example](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Performance-metrices/Track%20changes/)'| markdownify }}</td>
9393
</tr>
9494
<tr>
95-
<td>Use embedded word fonts</td>
95+
<td>{{'[Use embedded word fonts](https://support.syncfusion.com/kb/article/13969/how-to-resolve-font-problems-during-word-to-pdf-or-image-conversion#suggestion-3:-embed-fonts-in-docx)'| markdownify }}</td>
9696
<td>2 pages</td>
9797
<td>1.16</td>
9898
<td>{{'[GitHub-Example](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Performance-metrices/Use-embeded-word-font-PDF/)'| markdownify }}</td>

Document-Processing/Word/Word-Library/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following system configurations were used for benchmarking:
2020
* **.NET Version:** .NET 8.0
2121
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.DocIO.Net.Core v32.2.3](https://www.nuget.org/packages/Syncfusion.DocIO.Net.Core/32.2.3)
2222

23-
## Benchmark Results.
23+
## Benchmark Results
2424

2525
The table below shows the performance results of various Word document operations, evaluated using predefined input conditions in the previously described environment.
2626

0 commit comments

Comments
 (0)