Cell wrap using vb.net & EPPlus

DNR picture DNR · Oct 18, 2011 · Viewed 9.5k times · Source

I am trying to wrap a value in a cell using EPPlus and VB.net / ASP.Net
Have anyone been able to do this? I searched SO & google, but no luck.

Answer

gsk picture gsk · Mar 21, 2012

This will wrap the value of a cell (EPPlus 3.0.0.2) c# code:

workSheet.Cells[1, 1].Style.WrapText = true;