جزء
Contents
[
Hide
]
احصل على إحداثيات موضع الجزء
تمت إضافة getCoordinates() إلى IPortion وPortion والتي تتيح استرجاع إحداثيات بداية الجزء.
// إنشاء كائن من فئة Prseetation تمثل ملف PPTX
Presentation pres = new Presentation();
try {
// إعادة تشكيل سياق العرض التقديمي
IAutoShape shape = (IAutoShape) pres.getSlides().get_Item(0).getShapes().get_Item(0);
ITextFrame textFrame = (ITextFrame) shape.getTextFrame();
for (IParagraph paragraph : textFrame.getParagraphs())
{
for (IPortion portion : paragraph.getPortions())
{
Point2D.Float point = portion.getCoordinates();
System.out.println("X: " + point.x + " Y: " + point.y);
}
}
} finally {
if (pres != null) pres.dispose();
}