PrintArea & PrintTitleColumns?

Hello all,

It seems I'm unable to define those properties. I tried :

Dim wbk As Aspose.Cells.Workbook
Dim wks As Aspose.Cells.Worksheet
Dim index As Integer
wbk = New Aspose.Cells.Workbook
index = wbk.Worksheets.Add(Aspose.Cells.SheetType.Worksheet)
wks = wbk.Worksheets(index)
wks.Cells(10, 10).PutValue("A")
wks.PageSetup.PrintArea = "A1:B10"
wbk.Save(Server.MapPath("./output.xls"))

But when I open the file the print area is not defined. What am I missing ? I'm using the 4.4.1.13 hotfix as I had a problem with the WorkBook.Combine method...

Thanks in advance.

Hi,

Since you are using some older verion of Aspose.Cells. Kindly try the latest version downloading @: http://www.aspose.com/community/files/51/file-format-components/aspose.cells/entry121851.aspx

Thank you.

Works fine with the latest hotfix. Thanks a lot.