- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getPresentation()
方法的一些代码示例,展示了XSLFSlideShow.getPresentation()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSLFSlideShow.getPresentation()
方法的具体详情如下:
包路径:org.apache.poi.xslf.usermodel.XSLFSlideShow
类名称:XSLFSlideShow
方法名:getPresentation
[英]Returns the low level presentation base object
[中]返回低级表示基础对象
代码示例来源:origin: org.apache.poi/poi-ooxml
/**
* Returns the references from the presentation to its
* slides.
* You'll need these to figure out the slide ordering,
* and to get at the actual slides themselves
*/
@Internal
public CTSlideIdList getSlideReferences() {
if(! getPresentation().isSetSldIdLst()) {
getPresentation().setSldIdLst(CTSlideIdList.Factory.newInstance());
}
return getPresentation().getSldIdLst();
}
代码示例来源:origin: org.apache.poi/poi-ooxml
/**
* Returns the references from the presentation to its
* slide masters.
* You'll need these to get at the actual slide
* masters themselves
*/
@Internal
public CTSlideMasterIdList getSlideMasterReferences() {
return getPresentation().getSldMasterIdLst();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
/**
* Returns the references from the presentation to its
* slides.
* You'll need these to figure out the slide ordering,
* and to get at the actual slides themselves
*/
@Internal
public CTSlideIdList getSlideReferences() {
if(! getPresentation().isSetSldIdLst()) {
getPresentation().setSldIdLst(CTSlideIdList.Factory.newInstance());
}
return getPresentation().getSldIdLst();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
/**
* Returns the references from the presentation to its
* slide masters.
* You'll need these to get at the actual slide
* masters themselves
*/
@Internal
public CTSlideMasterIdList getSlideMasterReferences() {
return getPresentation().getSldMasterIdLst();
}
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getPresentation()方法的一些代码示例,展示了XSLFSlideShow.ge
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getSlidePart()方法的一些代码示例,展示了XSLFSlideShow.getSl
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.openPackage()方法的一些代码示例,展示了XSLFSlideShow.openPa
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getSlideReferences()方法的一些代码示例,展示了XSLFSlideShow
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getNodesPart()方法的一些代码示例,展示了XSLFSlideShow.getNo
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.()方法的一些代码示例,展示了XSLFSlideShow.()的具体用法。这些代码示例主要来
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getPackagePart()方法的一些代码示例,展示了XSLFSlideShow.get
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow.getPackage()方法的一些代码示例,展示了XSLFSlideShow.getPack
我是一名优秀的程序员,十分优秀!