矩形去掉边

Rectangle remove side

是否可以删除矩形的边?

我想在我的 pdf 页面上画一个没有左边的矩形

rect.disableBorderSide(Rectangle.LEFT); 无效

您可以使用setBorder(int)

Enables/Disables the border on the specified sides. The border is specified as an integer bitwise combination of the constants: LEFT, RIGHT, TOP, BOTTOM.

如果其他边界处于活动状态,只需

rect.setBorder(Rectangle.LEFT);

将禁用 LEFT 端。

理解部分:

The border is specified as an integer bitwise combination of the constants: LEFT, RIGHT, TOP, BOTTOM.

如果你想设置不同的只需要使用|运算符:

rect.setBorder(Rectangle.LEFT | Rectangle.TOP);