Characters.Font settings missing after unmerge/merge action

Hi,

I'm evaluating Aspose.Cells and I have the following problem.

Example:

Cells.Merge(0,0,1,3);
Cells[0,0].PutValue("This is a test");
Cells[0,0].Characters(0,10).Font.IsItalic = true;
Cells[0,0].Characters(10, 4).Font.IsBold = true;
Cells.UnMerge(0,0,1,3);
Cells.Merge(0,0,1,3);

After this the Font settings are lost, is there anyway to save these settings for "UnMerge" or keep them in some way?

Greeting

Edwin Meester

Hi,

Thanks, we will soon enhnace Cells.Merge/UnMerge method(s) so that it may retain the previous formattings.

Thank you.

Hi,

Please try this fix.

We have retained the previous formattings.