- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTextParagraph.setLineSpacing()
方法的一些代码示例,展示了XSLFTextParagraph.setLineSpacing()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSLFTextParagraph.setLineSpacing()
方法的具体详情如下:
包路径:org.apache.poi.xslf.usermodel.XSLFTextParagraph
类名称:XSLFTextParagraph
方法名:setLineSpacing
[英]This element specifies the vertical line spacing that is to be used within a paragraph. This may be specified in two different ways, percentage spacing and font point spacing:
If linespacing >= 0, then linespacing is a percentage of normal line height If linespacing < 0, the absolute value of linespacing is the spacing in points
Examples:
// spacing will be 120% of the size of the largest text on each line
paragraph.setLineSpacing(120);
// spacing will be 200% of the size of the largest text on each line
paragraph.setLineSpacing(200);
// spacing will be 48 points
paragraph.setLineSpacing(-48.0);
[中]此元素指定段落中要使用的垂直行距。这可以通过两种不同的方式指定,即百分比间距和字体点间距:
如果线条间距>=0,则线条间距是正常线条高度的百分比。如果线条间距<0,则线条间距的绝对值是以点为单位的间距
示例:
// spacing will be 120% of the size of the largest text on each line
paragraph.setLineSpacing(120);
// spacing will be 200% of the size of the largest text on each line
paragraph.setLineSpacing(200);
// spacing will be 48 points
paragraph.setLineSpacing(-48.0);
代码示例来源:origin: org.apache.poi/poi-ooxml
setLineSpacing(lineSpacing);
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
setLineSpacing(lineSpacing);
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
setLineSpacing(lineSpacing);
我在 Direct2D/DirectWrite 中呈现文本,但在 TextFormat 或 TextLayout 上调用 SetLineSpacing() 似乎没有效果。有谁知道为什么吗? 最佳答案
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTextParagraph.setLineSpacing()方法的一些代码示例,展示了XSLFTextParag
我是一名优秀的程序员,十分优秀!