我们可以使用 iText 7 在 pdf 中设置 List-Style-Position 吗?有 API 可用吗?

Can we set List-Style-Position in pdf using iText 7 ? is there any API available?

我正在尝试在 Itext 7 中找到一种等效方法来在列表上设置以下样式。 Itext7 中有 API 可用吗?

列表样式位置:内部;

是的,API 可以直接在 layout 代码中设置 list-style-position CSS 属性 的模拟。为此,使用 listElement.setProperty(Property.LIST_SYMBOL_POSITION, ListSymbolPosition.INSIDE);

示例代码:

Document document = new Document(pdfDocument);

List defaultList = new List();
for (int i = 0; i < 3; i++) {
    defaultList
            .add("Am trying to find an equivalent method in Itext 7 to set the below style on lists. Is there any API available in Itext7");
}

List bulletPositionInsideList = new List();
for (int i = 0; i < 3; i++) {
    bulletPositionInsideList
            .add("Am trying to find an equivalent method in Itext 7 to set the below style on lists. Is there any API available in Itext7");
}
bulletPositionInsideList.setProperty(Property.LIST_SYMBOL_POSITION, ListSymbolPosition.INSIDE);

document.add(defaultList);
document.add(bulletPositionInsideList);

默认列表与列表符号位置设置为内部的列表的视觉结果: