0
I’m doing an export to Excel using Delphi. At a certain point, a text ends up being larger than the size of the cell, "popping" its contents out of the cell when opening the file . XLSX generated.
I would like to know the command used to apply the effect of the button "Break Text Automatically" by Delphi.
Follow the command to generate the text in the cell:
Sheet.Range['M' + IntToStr(iLin)] := sTexto;
This variable sTexto
holds a multi-line concatenation.
Thank you very much! It worked out and was excellent!!!
– Rodrigo Tognin