How to adjust row height of cell merge in WinForms XIsOI?
No, it is not possible to AutoFit a row that contains a cell merged with cells in other rows. However you can adjust row height and column width by using the following code snippets.
C#
// Set Row height (workaround to autoFit rows)
sheet.Range["C3"].RowHeight = 42;
sheet.Range["C3"].ColumnWidth = 25;
VB
' Set Row height (workaround to autoFit rows)
sheet.Range("C3").RowHeight = 42
sheet.Range("C3").ColumnWidth = 25
Conclusion
I hope you enjoyed learning how to adjust the row height of cell merge in WinForms XIsOI.
You can refer to our WinForms Excel feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms Excel example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!