Class: Vedeu::Cells::BottomLeft Private
- Defined in:
- lib/vedeu/cells/borders/vertices/bottom_left.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Provides the character/escape sequence to draw the bottom left border with a custom value, colour and style.
Instance Method Summary collapse
- #as_html ⇒ String private
- #defaults ⇒ Hash<Symbol => String> private private
- #type ⇒ Symbol private
Instance Method Details
#as_html ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/vedeu/cells/borders/vertices/bottom_left.rb', line 15 def as_html '└' end |
#defaults ⇒ Hash<Symbol => String> (private)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
27 28 29 30 |
# File 'lib/vedeu/cells/borders/vertices/bottom_left.rb', line 27 def defaults super.merge!(position: Vedeu::Geometries::Position.coerce([yn, x]), value: Vedeu.esc.bottom_left) end |
#type ⇒ Symbol
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
20 21 22 |
# File 'lib/vedeu/cells/borders/vertices/bottom_left.rb', line 20 def type :bottom_left end |