gpt4 book ai didi

java - 创建一个无边框的表格

转载 作者:行者123 更新时间:2023-12-01 09:47:33 25 4
gpt4 key购买 nike

我已经成功创建了一个表:

//I create the table here and the default name is table1
XTextTable xTT = (XTextTable) UnoRuntime.queryInterface(XTextTable.class, oInt);
xTT.initialize(1, 1);

但是,这会创建具有默认边框的表格。我想在没有它的情况下创建这个表。

该属性由图像设置

enter image description here

最佳答案

创建表格,然后将边框宽度设置为 0。这是来自 https://www.mail-archive.com/dev@api.openoffice.org/msg07317.html 的 Python 示例:

borderLine = BorderLine()
borderLine.OuterLineWidth = 0

tableBorder = table.getPropertyValue("TableBorder")
tableBorder.VerticalLine = borderLine
tableBorder.HorizontalLine = borderLine
tableBorder.LeftLine = borderLine
tableBorder.RightLine = borderLine
tableBorder.TopLine = borderLine
tableBorder.BottomLine = borderLine
table.setPropertyValue("TableBorder", tableBorder)

有关相关的 Java 示例,请在此页面上搜索“TableBorder”:http://api.libreoffice.org/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java

关于java - 创建一个无边框的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37865594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com