طريقة auto_fill
auto_fill
تعبئة النطاق المستهدف تلقائيًا.
def auto_fill(self, target):
...
معامل | يكتب | وصف |
---|---|---|
target | Range | النطاق المستهدف. |
مثال
from aspose.cells import Workbook
# Instantiating a Workbook object
workbook = Workbook()
# Get the first Worksheet Cells.
cells = workbook.worksheets[0].cells
cells.get("A1").put_value(1)
cells.get("A2").put_value(2)
source = cells.create_range("A1:A2")
target = cells.create_range("A3:A10")
# fill 3,4,5....10 to the range A3:A10
source.auto_fill(target)
# Save the Excel file
workbook.save("book1.xlsm")
auto_fill
تعبئة النطاق المستهدف تلقائيًا.
def auto_fill(self, target, auto_fill_type):
...
معامل | يكتب | وصف |
---|---|---|
target | Range | النطاق المستهدف. |
auto_fill_type | AutoFillType | نوع التعبئة التلقائية. |
أنظر أيضا
- الوحدة
aspose.cells
- فئة
Range