طريقة move
move
ينقل الصورة إلى موقع محدد.
def move(self, upper_left_row, upper_left_column):
...
معامل | يكتب | وصف |
---|---|---|
upper_left_row | int | مؤشر الصف العلوي الأيسر. |
upper_left_column | int | فهرس العمود الأيسر العلوي. |
مثال
from aspose.cells import Workbook
# Instantiating a Workbook object
workbook = Workbook()
worksheet = workbook.worksheets[0]
# Adding a picture at the location of a cell whose row and column indices are 1 in the worksheet. It is "B2" cell
imgIndex = worksheet.pictures.add(1, 1, "example.jpeg")
# Get the inserted picture object
pic = worksheet.pictures[imgIndex]
# Set the new location of the picture
pic.move(2, 4)
# Save the excel file.
workbook.save("result.xlsx")
أنظر أيضا
- الوحدة
aspose.cells.drawing
- فئة
Picture