assume I have a cell
dim c1 as aspose.cells.cell = …
Is there a method to move from that cell to a new cell, with a number of rows and columns offset ??
or should i go to the worksheet
thank you
guido
assume I have a cell
dim c1 as aspose.cells.cell = …
Is there a method to move from that cell to a new cell, with a number of rows and columns offset ??
or should i go to the worksheet
thank you
guido
Thanks for your query.
I think you may try to use Range.MoveTo() method for your needs. You may create a range based on your cell and then move to your desired position/location in the sheet.
Alternatively, you may try Cells.MoveRange() method.