EPPLUS - Adjust Text to Cell

0

I would like to know if you can fit a long text to the size of the cell in using EPPLUS.dll

    
asked by Angel 06.12.2018 в 23:44
source

1 answer

0

You could use something like being

double columnWidth = 50;
worksheet.Column(1).Width = columnWidth;

to define the width of the column

Resizing rows and columns

You could also see the auto fit

worksheet.Cells["A1:K20"].AutoFitColumns();

Autofit columns

    
answered by 07.12.2018 в 15:28