جزء
Contents
[
Hide
]
احصل على إحداثيات موضع الجزء
تمت إضافة طريقة GetCoordinates() إلى واجهة IPortion وفئة Portion التي تسمح باسترداد إحداثيات بداية الجزء:
import aspose.slides as slides
with slides.Presentation(path + "HelloWorld.pptx") as presentation:
shape = presentation.slides[0].shapes[0]
textFrame = shape.text_frame
for paragraph in textFrame.paragraphs:
for portion in paragraph.portions:
point = portion.get_coordinates()
print("الإحداثيات X =" + str(point.x) + " الإحداثيات Y =" + str(point.y))