从Excel复制到Word时如何控制段落格式?

时间:2018-06-03 13:05:12

标签: excel vba ms-word

我有代码复制范围从Excel和粘贴的单词但浪费了几个小时后我无法找到如何控制段落格式行间距我尝试了很多东西,但它显示“错误方法不支持”

我正在使用以下代码:

ABC(){
    jframe = new JFrame();
    jframe.setSize(600, 600);
    jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    jframe.setVisible(true);
    start = true;
    jbutton1 = new JButton("Button1");
    jbutton2 = new JButton("Button2");


    jbutton1.setLocation(200, 500);
    jbutton2.setLocation(300, 550);

    // first window of the application
    JPanel jp = new JPanel();
    jp.add(jbutton1);
    jp.add(jbutton2);

    jframe.add(jp);
    }

提前致谢

0 个答案:

没有答案