Class StyleBoxLine
A StyleBox that displays a single line of a given color and thickness.
- Inheritance
-
StyleBoxLine
Remarks
A StyleBox that displays a single line of a given color and thickness. The line can be either horizontal or vertical. Useful for separators.
Properties
color
The line's color.
var color : Color = Color(0, 0, 0, 1)
Property Value
Remarks
grow_begin
The number of pixels the line will extend before the StyleBoxLine's bounds. If set to a negative value, the line will begin inside the StyleBoxLine's bounds.
var grow_begin : float = 1.0
Property Value
Remarks
grow_end
The number of pixels the line will extend past the StyleBoxLine's bounds. If set to a negative value, the line will end inside the StyleBoxLine's bounds.
var grow_end : float = 1.0
Property Value
Remarks
thickness
The line's thickness in pixels.
var thickness : int = 1
Property Value
Remarks
vertical
If true
, the line will be vertical. If false
, the line will be horizontal.
var vertical : bool = false