Articles in this section
Category / Section

How to set column width and row height?

1 min read

Column width and row height of spreadsheet can be modified using XlsIO. Here is the code snippet.

C#

// Changing the Column Width
sheet.Range["A1"].ColumnWidth = 20;
// Changing the Row Height
sheet.Range["A2"].RowHeight = 20;

VB

' Changing the Column Width
sheet.Range("A1").ColumnWidth = 20
' Changing the Row Height
sheet.Range("A2").RowHeight = 20

Here is the sample for your reference:

https://www.syncfusion.com/downloads/support/directtrac/general/rowHeightColumnWidth1094481517.zip

 

 

 

 

 

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