Hi,
I got ur point on how to use the Aspose methods in other languages. Thanks.
My next question is where can I find documention for all the methods that Aspose.Cells uses (for other languages).
For example I'm not sure on where to use Cell.PutValue_1, Cell.PutValue_2, Cell.PutValue_3, Cell.PutValue_4.. I know only Cell.PutValue_5 and that too you have said. The link that you have sent shows only the examples. But I need all the info regarding the methods.
My requirement is to do the below formatting on the excel that is to be generated. (code in lotusscript)
FormatSheet:
xlApp.Rows("1:1").Select
xlApp.Selection.Font.Bold = True
xlApp.Selection.Font.ColorIndex = 3
xlApp.Selection.Interior.ColorIndex = 8
xlApp.Rows("1:"& row%).Select
xlApp.Selection.Font.Name = "Arial"
xlApp.Selection.Font.Size = 8
xlsheet.Columns("AF").ColumnWidth = "55"
xlsheet.Columns("AF").WrapText = True
xlsheet.Range("A:AX").Columns.AutoFit
xlsheet.PageSetup.Orientation = 2
xlsheet.PageSetup.LeftMargin = "0"
xlsheet.PageSetup.RightMargin = "0"
If there is some documentation, it would be helpful for me to refer and code the above using Aspose methods or it will be a overhead for me to post the codes similar to above in the forum and ask for the alternate aspose methods.
Hope you got my issue.
Thanks