2
How can I perform line breaking of a String with multiple cities concatenated to each state listed in an Excel cell exported in VB.NET and using Officeopenxml and Officeopenxml.Drawing.
Excerpt from the Code:
Dim nome_cidade As String = "São Paulo < br/> Guarulhos <br /> Campinas"
ws.Cells(cod_linha, cod_coluna).Value = nome_cidade ws.Cells(cod_linha, cod_coluna).StyleName = txt_estilo
cod_coluna += 1