You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Document-Processing-toc.html
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5894,6 +5894,21 @@
5894
5894
<li>
5895
5895
<a href="/document-processing/excel/excel-library/net/faqs/how-to-extract-embedded-OLE-files-from-an-Excel-workbook-as-streams">How to extract embedded OLE files from an Excel workbook as streams?</a>
5896
5896
</li>
5897
+
<li>
5898
+
<a href="/document-processing/excel/excel-library/net/faqs/how-to-copy-the-used-range-from-one-Excel-workbook-to-another">How to copy the used range from one Excel workbook to another?</a>
5899
+
</li>
5900
+
<li>
5901
+
<a href="/document-processing/excel/excel-library/net/faqs/how-does-xlsio-handle-empty-string-display-text-in-hyperlinks">How does XlsIO handle empty string display text in hyperlinks?</a>
5902
+
</li>
5903
+
<li>
5904
+
<a href="/document-processing/excel/excel-library/net/faqs/what-is-the-maximum-row-height-in-Excel">What is the maximum row height in Excel?</a>
5905
+
</li>
5906
+
<li>
5907
+
<a href="/document-processing/excel/excel-library/net/faqs/does-xlsio-support-importing-HTML-images-into-Excel">Does XlsIO support importing HTML images into Excel?</a>
5908
+
</li>
5909
+
<li>
5910
+
<a href="/document-processing/excel/excel-library/net/faqs/how-to-apply-number-formatting-to-an-entire-column-in-Excel">How to apply number formatting to an entire column in Excel?</a>
Copy file name to clipboardExpand all lines: Document-Processing/Excel/Conversions/Excel-to-PDF/NET/Excel-to-PDF-Converter-Settings.md
+84-1Lines changed: 84 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2234,4 +2234,87 @@ End Namespace
2234
2234
{% endhighlight %}
2235
2235
{% endtabs %}
2236
2236
2237
-
A complete working example to skip warning in Excel to PDF in C# is present on [this GitHub page](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Excel%20to%20PDF/Warnings/.NET/Warnings).
2237
+
A complete working example to skip warning in Excel to PDF in C# is present on [this GitHub page](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Excel%20to%20PDF/Warnings/.NET/Warnings).
2238
+
2239
+
## Show File Name
2240
+
2241
+
This property allows you to display the file name along with its extension in the header and/or footer when converting an Excel document to PDF. It's default value is FALSE.
2242
+
2243
+
The following code snippet explains how to enable the <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverterSettings.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverterSettings_ShowFileNameWithExtension">ShowFileNameWithExtension</a> property during Excel to PDF conversion.
Using excelEngine As ExcelEngine = New ExcelEngine()
2298
+
Dim application As IApplication = excelEngine.Excel
2299
+
application.DefaultVersion = ExcelVersion.Xlsx
2300
+
Dim workbook As IWorkbook = application.Workbooks.Open("InputTemplate.xlsx")
2301
+
2302
+
'Initialize ExcelToPdfConverterSettings
2303
+
Dim settings As ExcelToPdfConverterSettings = New ExcelToPdfConverterSettings()
2304
+
2305
+
'Enable ShowFileNameWithExtension property
2306
+
settings.ShowFileNameWithExtension = True
2307
+
2308
+
'Load the Excel document into ExcelToPdfConverter
2309
+
Dim converter As ExcelToPdfConverter = New ExcelToPdfConverter(workbook)
2310
+
2311
+
'Convert the Excel document to PDF with converter settings
2312
+
Dim document As PdfDocument = converter.Convert(settings)
2313
+
2314
+
'Save the PDF document
2315
+
document.Save("Output.pdf")
2316
+
End Using
2317
+
{% endhighlight %}
2318
+
{% endtabs%}
2319
+
2320
+
A complete working example demonstrating how to enable the <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverterSettings.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverterSettings_ShowFileNameWithExtension">ShowFileNameWithExtension</a> property during Excel to PDF conversion in C# is present on <ahref="https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Excel%20to%20PDF/Show%20file%20name%20with%20extension%20in%20PDF/.NET/ShowFileNameWithExtension">this GitHub page</a>.
Copy file name to clipboardExpand all lines: Document-Processing/Excel/Excel-Library/NET/Worksheet-Rows-and-Columns-Manipulation.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -950,6 +950,8 @@ End Using
950
950
951
951
A complete working example to expand or collapse groups in an Excel worksheet in C# is present on [this GitHub page](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Format%20rows%20and%20columns/Expand%20or%20Collapse%20Groups/.NET/Expand%20or%20Collapse%20Groups).
952
952
953
+
N> The <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html#Syncfusion_XlsIO_IRange_RowHeight">RowHeight</a> or <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html#Syncfusion_XlsIO_IRange_ColumnWidth">ColumnWidth</a> of collapsed rows or columns will be 0.
954
+
953
955
### Subtotal
954
956
955
957
The XlsIO supports subtotaling a group to quickly calculate rows of related data by inserting subtotals and totals.
title: Hyperlink display text behavior | Syncfusion
3
+
description: This page explains how Syncfusion XlsIO handles empty string display text in hyperlinks, consistent with Microsoft Excel behavior.
4
+
platform: document-processing
5
+
control: XlsIO
6
+
documentation: UG
7
+
---
8
+
9
+
# How does XlsIO handle empty string display text in hyperlinks?
10
+
11
+
As per Microsoft Excel behavior, hyperlinks cannot be assigned with empty display text values. When the display text of a hyperlink is set to an empty string, Excel automatically uses the hyperlink address itself as the display text. Syncfusion XlsIO follows the same behavior.
12
+
13
+
If a user does not provide a <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IHyperLink.html#Syncfusion_XlsIO_IHyperLink_TextToDisplay">TextToDisplay</a> value explicitly after assigning a hyperlink <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IHyperLink.html#Syncfusion_XlsIO_IHyperLink_Address">Address</a>, XlsIO uses the address value as the display text to match Excel behavior. If <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IHyperLink.html#Syncfusion_XlsIO_IHyperLink_TextToDisplay">TextToDisplay</a> is assigned after the <ahref="https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IHyperLink.html#Syncfusion_XlsIO_IHyperLink_Address">Address</a>, that value is used.
14
+
15
+
{% tabs %}
16
+
{% highlight c# tabtitle="C# [Cross-platform]" %}
17
+
//Case 1: Without TextToDisplay - address itself is used as display text
title: Excel maximum row height and text overflow | Syncfusion
3
+
description: Learn about Excel's maximum row height of 409 points and how Syncfusion XlsIO enforces this limitation.
4
+
platform: document-processing
5
+
control: XlsIO
6
+
documentation: UG
7
+
---
8
+
9
+
# What is the maximum row height in Excel?
10
+
11
+
In Microsoft Excel, the maximum row height is **409 points**. When content in a cell exceeds this height, Excel does not automatically move the text to the next row. Syncfusion XlsIO follows the same behavior to remain consistent with Excel.
0 commit comments