How can I alter the row heights of all my non empty rows in my EXCEL sheet? Thanks in advance, w.

link|improve this question
you mean by C# code? if so, simple place a foreach loop that checks all rows and set the rowsheight to your desired height (with a check wether the row is empty) untill it reaches the end of rows. – Levisaxos Feb 14 '11 at 11:16
feedback

2 Answers

MySheet.UsedRange.EntireRow.Height = value;
link|improve this answer
MySheet.UsedRange.EntireRow.Height seems to be a read-only property. Not able to set it. – bdhar Mar 10 '11 at 16:44
Not true, just tried it. As long as your worksheet is not protected, you can set the .UsedRange.EntireRow.Height property. – Alain Mar 10 '11 at 16:54
feedback
...EntireRow.RowHeight = value;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.