如何从 OpenOffice SDK 获取自定义形状类型?

发布于 2024-10-14 09:29:25 字数 344 浏览 1 评论 0原文

我正在使用 OpenOffice SDK 打开和解析 ppt 和 pptx 文件;现在我可以打开 ppt 文件并提取形状。

XShape xShape = (XShape) UnoRuntime.queryInterface(
    XShape.class, xShapes.getByIndex(j));
String type = xShape.getShapeType();

通过使用上面的代码,我可以获取矩形、椭圆形等的形状类型,但我得到的是com.sun.star.drawing.CustomShape

有没有办法获取形状类型,如矩形、椭圆形等?

I am using OpenOffice SDK to open and parse ppt and pptx files; now I can open ppt files and extract shapes.

XShape xShape = (XShape) UnoRuntime.queryInterface(
    XShape.class, xShapes.getByIndex(j));
String type = xShape.getShapeType();

By using the code above I can get shape type and for rectangle, ellipse, etc., but I get com.sun.star.drawing.CustomShape.

Is there a way to get the shape type, like rectangle, ellipse, etc.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

豆芽 2024-10-21 09:29:25

我能找到的唯一方法是获取 UINameSingular 属性

XPropertySet xShapeProperties = (XPropertySet) 
    UnoRuntime.queryInterface(XPropertySet.class, xShape);
String uiName = (String) xShapeProperties.getPropertyValue("UINameSingular");

The only way I could find is getting UINameSingular property

XPropertySet xShapeProperties = (XPropertySet) 
    UnoRuntime.queryInterface(XPropertySet.class, xShape);
String uiName = (String) xShapeProperties.getPropertyValue("UINameSingular");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文