Hi Faiz,
Hi,
In our internal code, if text exceeds its own column, the text needs extra right column or columns to show all text. You can adjust right column width to see it.
Hi Faiz,
Hi,
I will update you soon after some testing.
Hi Nikul,
Please read our replies at the following posts: 349460 and 349497 we think our results are correct.
Please remove the text in U3 and see the difference.
Hi Faiz,
Hi,
We output the dashed line the same as Excel print preview.
We do not understand your second question.
Please create screenshots and highlight problems with red circles.
Hi Faiz,
Hi,
Thanks for highlighting the differences. We will look into them and fix them if possible and update you asap.
Hi,
The font issue is because Aspose.Cells generate font using .NET framework API(s) so the font weight cannot be controlled.
There is a way to control font weight by unmanaged API(s) by Win32 GDI, but we cannot use unmanaged code in our product.
Thanks for your understanding.
Hi Faiz,
Hi,
The image looks fine to me. Please see the sample code below and the output emf image.
Please use the latest version:
Aspose.Cells
for .NET v7.0.4.4
C#
string path = @“F:\Shak-Data-RW\Downloads\test\v7030\ooxmlPackage2.xlsx”;
Workbook workbook = new Workbook(path);
Worksheet worksheet = workbook.Worksheets[0];
//Apply different Image / Print options.
Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.OnePagePerSheet = true;
options.ImageFormat = ImageFormat.Emf;
SheetRender sr = new SheetRender(worksheet, options);
Bitmap bitmap = sr.ToImage(0);
bitmap.Save(path + “.out.emf”, ImageFormat.Emf);
Hi Faiz,
Hi,
When shall I expect fix??
Hi,
It is now posted in priority forum.
Hi,
Please download and try the latest fix: Aspose.Cells for .NET v7.0.4.5
We support double underline, but we do not support custom format ‘@’, so the double underline is short a bit. We will support it later.
Hi Amjad,
Hi Mukund,