Hello,
I used the AutofitRows function with the AutoFitterOptions.AutoFitMergedCells at true for one of my file. It works pretty good! But I wanted to use it on only one row and I couldn’t find the way to do that. I thought that there was a way with AutoFitRow function, but there’s no call with the AutoFitterOptions. Maybe another way allows to do that?
What I’ve done:
var options = new AutoFitterOptions { AutoFitMergedCells = true };
currentSheet.AutoFitRows(options);
What I wanted to do:
var options = new AutoFitterOptions { AutoFitMergedCells = true };
currentSheet.AutoFitRow(0,1,0,2,options);
Thanks in advance!
This message was posted using Page2Forum from AutoFit Rows for Merged Cells - Aspose.Cells for .NET