How to auto fit the rows/columns at runtime in WinForms Spreadsheet?
Autofit rows or columns
WinForms Spreadsheet (SfSpreadsheet) provides support to fit the rows or columns based on its content at runtime. You can fit the multiple columns by calling AutoFitColumns method of XlsIO’s IRange and then set the adjusted column width into the grid by using SetColumnWidth method of SpreadsheetGrid like below code example.
//For autofit multiple columns
Spreadsheet.ActiveSheet.Range["D1:G100"].AutofitColumns();
for (int i = 2; i <= 7; i++)
{
Spreadsheet.ActiveGrid.SetColumnWidth(i, i, Spreadsheet.ActiveSheet.GetColumnWidthInPixels(i));
}
//For autofit multiple rows
Spreadsheet.ActiveSheet.Range["B1:B10"].WrapText = true;
Spreadsheet.ActiveSheet.Range["B1:B10"].AutofitRows();
for (int i = 1; i <= 10; i++)
{
Spreadsheet.ActiveGrid.SetRowHeight(i, i, Spreadsheet.ActiveSheet.GetRowHeightInPixels(i));
}
Samples:
WPF
Reference Link: Auto Fit Rows and columns
Conclusion
I
hope you enjoyed learning about how to auto fit the rows or columns at runtime
in Spreadsheet.
You
can refer to our WinForms Spreadsheet feature
tour page to know about its other groundbreaking feature representations.
You can also explore our WinForms Spreadsheet
documentation to understand how to present and manipulate data.
For
current customers, you can check out our WinForms from the License and Downloads page. If you
are new to Syncfusion, you can try our 30-day free trial to
check out our WinForms Spreadsheet and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!