poi操作ppt添加带编号的文本框

POI版本3.14。

创建一个powerpoint,添加一个页面,页面上添加一个文本框(横向),文本框里有多行文本,带编号。

/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.hslf.examples;

import java.io.FileOutputStream;

import org.apache.poi.hslf.usermodel.HSLFSlide;
import org.apache.poi.hslf.usermodel.HSLFSlideShow;
import org.apache.poi.hslf.usermodel.HSLFTextBox;
import org.apache.poi.hslf.usermodel.HSLFTextParagraph;

/**
 * How to create a single-level bulleted list
 * and change some of the bullet attributes
 *
 * @author Yegor Kozlov
 */
public final class BulletsDemo {

    public static void main(String[] args) throws Exception {
        //构造一个ppt对象
        HSLFSlideShow ppt = new HSLFSlideShow();
        //构造一页
        HSLFSlide slide = ppt.createSlide();
        //构造一个文本框
        HSLFTextBox shape = new HSLFTextBox();
        HSLFTextParagraph rt = shape.getTextParagraphs().get(0);
        rt.getTextRuns().get(0).setFontSize(42d);
        //使用编号
        rt.setBullet(true);
        rt.setIndent(0d);  //bullet offset
        rt.setLeftMargin(50d);   //text offset (should be greater than bullet offset)
        //设置编号的图标编码,这是一个笑脸
        rt.setBulletChar('\u263A'); //bullet character
        shape.setText(
                "January\r" +
                "February\r" +
                "March\r" +
                "April");
        //设置文本框的位置和宽度高度
        shape.setAnchor(new java.awt.Rectangle(50, 50, 500, 300));  //position of the text box in the slide
        //文本框添加到ppt页面里
        slide.addShape(shape);

        FileOutputStream out = new FileOutputStream("bullets.ppt");
        ppt.write(out);
        out.close();
   }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值