Copy a block of data from the Worksheet on to the clipboard.
Copy(R1 = 0, C1 = 0, R2 = -1, C2 = -1, FullPrecision = True)
Returns True on successful and False on failure.
#Create Book1 import PyOrigin Sheet=PyOrigin.WorksheetPages('Book1').Layers(0) #copy the data in first sheet into clipboard Sheet.Copy(0, 0, -1, -1, True)