添加幻灯片 UNO API

发布于 2024-11-11 10:59:57 字数 128 浏览 5 评论 0原文

我正在为 impress 创建一个附加组件,其中的功能之一是添加幻灯片。我可以通过使用 XDrawPages 为当前的 Componenet 添加一张空白幻灯片。如何添加具有其他布局的幻灯片(impress 中的预定义布局)? 提前致谢 ..

Im creating an add-on for impress, in which one of the feature is to add a slide. I could manage to add a blank slide by using XDrawPages for the current Componenet. How can i add a slide with someother layout(predefined layouts in impress) ?
Thanks in advance ..

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

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

发布评论

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

评论(2

归途 2024-11-18 10:59:57

到目前为止,我还没有成功地将母版的布局设置为新幻灯片。不过,我正在使用此解决方法:

model = desktop.getCurrentComponent()
model.duplicate(model.getDrawPages().getByIndex(0))

我基本上复制了第一张幻灯片(我将其保留为空并作为最后一步删除)。这会复制所有内容:母版、布局、内容。

So far I had no luck in setting the master's layout to a new slide. However I'm using this workaround:

model = desktop.getCurrentComponent()
model.duplicate(model.getDrawPages().getByIndex(0))

I basically duplicate the first slide (which I keep empty and delete as last step). This copies everything: master, layout, content.

幸福还没到 2024-11-18 10:59:57

我不知道这是否真的将其链接到主幻灯片,但至少我们可以获得一些下降(标准)布局:

Sub Main
  pages = ThisComponent.getDrawPages()
  pages.insertNewByIndex(pages.getCount() - 1)
  newSlide = pages.getByIndex(pages.getCount() - 1)
  newSlide.layout = 1
End Sub

I dont know whether this really links it to the master slide but at least we can get some descent (standard) layout:

Sub Main
  pages = ThisComponent.getDrawPages()
  pages.insertNewByIndex(pages.getCount() - 1)
  newSlide = pages.getByIndex(pages.getCount() - 1)
  newSlide.layout = 1
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文