طريقة copy_in_range

copy_in_range(source_shapes, ca, dest_row, dest_column, is_contained)

انسخ الأشكال الموجودة في النطاق إلى النطاق الوجهة.

def copy_in_range(self, source_shapes, ca, dest_row, dest_column, is_contained):
    ...
معامليكتبوصف
source_shapesShapeCollectionأشكال المصدر.
caCellAreaنطاق المصدر.
dest_rowintفهرس صف الإرسال للنطاق المُصْدَر.
dest_columnintعمود الوجهة من نطاق الوجهة.
is_containedboolما إذا كان يتم نسخ الأشكال المضمنة في النطاق فقط.
إذا كان صحيحًا ، فقم بنسخ الأشكال الموجودة في النطاق فقط.
خلاف ذلك ، يعمل مثل MS Office.

مثال

from aspose.cells import CellArea

# add a shape
shapes.add_rectangle(2, 0, 2, 0, 130, 130)
area2 = CellArea()
area2.start_column = 1
area2.start_row = 1
area2.end_column = 5
area2.end_row = 11
# copy
shapes.copy_in_range(shapes, area2, 12, 1, False)

أنظر أيضا