JAVA中MatteBorder的5个参数分别什么意思

2025-01-08 12:48:59
推荐回答(1个)
回答1:

MatteBorder
public MatteBorder(int top,
int left,
int bottom,
int right,
Color matteColor)

创建具有指定 insets 和颜色的衬边边框。

参数:
top - 边框顶部 inset
left - 边框左部 inset
bottom - 边框底部 inset
right - 边框右部 inset
matteColor - 边框呈现的颜色
java api