Hi,
I have a spreadsheet that has an image and then a textbox on top of the image to display a traffic-light style graphic. When I open the spreadsheet in Cells.Net and save a copy it changes the z-order of the image and textbox so that the textbox label is now behind the image.
Is this a bug? Can I workaround it or can I get a fix? The spreadsheet that exhibits the problem is attached. The C# code to show the problem is as follows:
using Aspose.Cells;
namespace TestAsposeZOrder
{
class Program
{
static Program()
{
License license = new License();
license.SetLicense(“Aspose.Cells.lic”);
}
static void Main(string[] args)
{
using (FileStream fstream = new FileStream(args[0], FileMode.Open))
{
Workbook workbook = new Workbook(fstream);
workbook.Save(args[1]);
}
}
}
}
Thanks,
Adam