c# - change merged cells height -


i create c# programmatically excel file merged cell. user openxml library. need autofit merge cells single cell. can't change merged cells hight. possible programmatically change?

you can't change cell height far know.
but, nice workaround change row heigth instead of cell heigth.
remember in vb can this: rows(3).rowheight = 25;.
for c# way should take @ this: msdn reference.
hope helps!


Comments