Text wrapping support #683
-
|
Does MiniExcel support cell wrap setting for dynamic excel columns? |
Beta Was this translation helpful? Give feedback.
Answered by
michelebastione
May 14, 2026
Replies: 1 comment
-
|
Hello, sorry for the late reply. Cell wrapping has been available in MiniExcel for some time now: var conf = new OpenXmlConfiguration
{
StyleOptions = new OpenXmlStyleOptions { WrapCellContents = true }
};
MiniEcel.SaveAs(yourPath, yourData, configuration: conf); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
michelebastione
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, sorry for the late reply. Cell wrapping has been available in MiniExcel for some time now: