Generated Object
A javax.swing.border.LineBorder, a border that consists of a colored line.
Value Argument
No value argument is accepted.
Attributes
color: is required.
- color <Color> The color of the line
- roundedCorners <boolean> Whether or not the border should appear rounded. Only effective with a thickness of 1, otherwise you will get a wierd quasi-bevel effect. Default is false.
- thickness <int> The thickness of the line, in pixels. Default is 1.
- parent <boolean> Whether or not this border is to be added to the parent JComponent
Content
lineBorder() is a leaf node, no child content is allowed.
Examples
panel(border:lineBorder(Color.RED))
panel {
lineBorder(color:Color.WHITE, thickness:3, parent:true)
}
lineBorder(color:BLUE, roundedCorners:true)
|