Articles in this section
Category / Section

How to auto fit the rows or columns at runtime in WinForms Spreadsheet (SfSpreadsheet)?

1 min read

Autofit rows or columns

WinForms Spreadsheet provides support to fit the rows or columns based on its content at run time.  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.

C#

//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

WinRT

WinForms

UWP

Reference link: https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#auto-fit-rows-and-columns

 

Conclusion

I hope you enjoyed learning about how to auto fit the rows or columns at runtime in WinForms Spreadsheet (SfSpreadsheet).

You can refer to our WinForms Spreadsheet’s 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!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied