2021-06-28

Java 设置Word文本框中的文字旋转方向

Word文档中可添加文本框,并设置文本框为横向文本排列或是纵向文本排列,或者设置文本框中的文字旋转方向等。通过Java程序代码,也可以实现以上文本框的操作。下面以Java代码示例展示具体的实现步骤。另外,可参考C#及VB.NET代码的实现方法。

本次程序测试环境如下:

Word测试文档版本:.docx 2013

Word Jar包工具:free spire.doc.jar 3.9.0

代码编译工具:IDEA

Jdk版本:1.8.0

导入操作文档所需的jar包工具,如图结果:

Java

import com.spire.doc.*;import com.spire.doc.documents.*;import com.spire.doc.fields.TextBox;import com.spire.doc.fields.TextRange;import java.awt.*;public class SetTextDirection { public static void main(String[] args) {//创建Word文档  Document doc = new Document();  Section section = doc.addSection();  //设置页面边距  section.getPageSetup().getMargins().setLeft(90f);  section.getPageSetup().getMargins().setRight(90f);  Paragraph paragraph = section.addParagraph();  //添加第一个文本框  TextBox textBox1 = paragraph.appendTextBox(280, 250);  //设置文本框为固定定位  textBox1.getFormat().setHorizontalOrigin(HorizontalOrigin.Page);  textBox1.getFormat().setHorizontalPosition(150);  textBox1.getFormat().setVerticalOrigin(VerticalOrigin.Page);  textBox1.getFormat().setVerticalPosition(80);  //设置文字旋转方向  textBox1.getFormat().setTextAnchor(ShapeVerticalAlignment.Center);  textBox1.getFormat().setLayoutFlowAlt(TextDirection.Left_To_Right);//旋转文字(逆时针)  //textBox1.getFormat().setLayoutFlowAlt(TextDirection.Left_To_Right_Rotated);//文字竖排显示  //添加文字并设置字体  Paragraph textboxPara1 = textBox1.getBody().addParagraph();  TextRange txtrg = textboxPara1.appendText("姓名_______学号_________班级__________");  txtrg.getCharacterFormat().setFontName("等线");  txtrg.getCharacterFormat().setFontSize(10);  txtrg.getCharacterFormat().setTextColor(Color.black);  textboxPara1.getFormat().setHorizontalAlignment(HorizontalAlignment.Center);  //保......

原文转载:http://www.shaoqun.com/a/833938.html

跨境电商:https://www.ikjzd.com/

亚马逊全球开店制造:https://www.ikjzd.com/w/204.html

google趋势:https://www.ikjzd.com/w/397

韩蓬:https://www.ikjzd.com/w/1635


Word文档中可添加文本框,并设置文本框为横向文本排列或是纵向文本排列,或者设置文本框中的文字旋转方向等。通过Java程序代码,也可以实现以上文本框的操作。下面以Java代码示例展示具体的实现步骤。另外,可参考C#及VB.NET代码的实现方法。本次程序测试环境如下:Word测试文档版本:.docx2013WordJar包工具:freespire.doc.jar3.9.0代码编译工具:IDEAJdk
crowd:https://www.ikjzd.com/w/880
图文教你看懂VAT、IEN号、C88文件、FHDDS法案、双清包税的关系:https://www.ikjzd.com/articles/22078
教你快速找到亚马逊竞争对手的站外推广渠道和合作网红:https://www.ikjzd.com/articles/22080
实操:怎么做独立站?扒一扒竞争对手的创意和策略:https://www.ikjzd.com/articles/22081
既省钱又好看的图片怎么来?亚马逊产品图片拍照技巧请查收:https://www.ikjzd.com/articles/22082
我在表哥家跟表嫂的激情故事(4/4):http://lady.shaoqun.com/a/43863.html
小舅子媳妇用胸撩拨 与我激情缠绵(2/2):http://lady.shaoqun.com/m/a/49359.html
打开腿闺蜜用黄瓜让我爽 和闺蜜一起磨豆腐的经历:http://www.30bags.com/m/a/249912.html
亚马逊站外引流"扛把子"级助攻:视频推广:https://www.ikjzd.com/articles/146111
亚马逊QA 是什么,如何优化?:https://www.ikjzd.com/articles/146108
Tiktok引流方法论之:网红带货:https://www.ikjzd.com/articles/146106
深圳关山月美术馆近期展览汇总:http://www.30bags.com/a/460382.html

No comments:

Post a Comment