Hi,
I am using Aspose.Cells 7.4.3 to create excel files and convert them to HTML or PDF. But when the direction of a sheet is right to left, PDF file looks OK but html file shows the table as Left to right. Please help me to solve the problem or if it is a Bug please fix it. this is my sample code:
Workbook wb = new Workbook();
Worksheet sheet = wb.Worksheets[0];
sheet.DisplayRightToLeft = true;
Cell cell = sheet.Cells[“A1”];
cell.PutValue(“Hello World”);
wb.Save(“d:\MyBook.xls”, SaveFormat.Excel97To2003); //OK
wb.Save(“d:\MyBook.pdf”, SaveFormat.Pdf); //OK
wb.Save(“d:\MyBook.mht”, SaveFormat.MHtml); //Shows LTR Table