Hi,
I noticed that if you copy from range A1 to cells A1:A10 Aspose does not copy the value into each cell, in the way that a paste operation in Excel does. See the example code below (which does not <!–[if gte mso 10]>
<![endif]–><span style=“font-size: 11pt; line-height: 115%; font-family: “Calibri”,“sans-serif”;”>actually
do anything).
sheet.Cells(“A1”).PutValue(“TEST”)
Dim source, target As Aspose.Cells.Range
source = sheet.Cells.CreateRange(0, 0, 1, 1)
target = sheet.Cells.CreateRange(0, 0, 10, 1)
target.Copy(source)
I have written a formula into a cell, and now want to paste it down to all rows in the column, but it appears that I cannot do this without manually setting each rows’s formula.
Is the copy/paste support in Cells limited to only copying “one to one”?
Thanks,
Shane