Class: Vedeu::Cells::Horizontal Private
- Defined in:
- lib/vedeu/cells/borders/horizontal.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 one cell of a horizontal border with a custom value, colour and style.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Empty
Instance Method Summary collapse
- #as_html ⇒ String private
-
#defaults ⇒ Hash<Symbol => void>
private
private
The default options/attributes for a new instance of this class.
- #text ⇒ String private
- #type ⇒ Symbol private
Methods inherited from Border
Methods inherited from Empty
#border, #eql?, #geometry, #interface, #to_ast, #to_h, #to_html, #value?
Methods included from Repositories::Defaults
Methods included from Vedeu::Common
#absent?, #array?, #boolean, #boolean?, #empty_value?, #escape?, #falsy?, #hash?, #line_model?, #numeric?, #positionable?, #present?, #snake_case, #stream_model?, #string?, #symbol?, #truthy?, #view_model?
Methods included from Presentation::Styles
#render_style, #style, #style=, #style?
Methods included from Presentation::Parent
Methods included from Presentation::Position
#position, #position=, #position?, #render_position, #x, #y
Methods included from Presentation::Colour
#background, #background=, #colour, #colour=, #colour?, #foreground, #foreground=, #interface, #named_colour, #named_colour?, #parent_colour, #parent_colour?, #render_colour
Methods included from Presentation
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/horizontal.rb', line 15 def as_html '─' end |
#defaults ⇒ Hash<Symbol => void> (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.
The default options/attributes for a new instance of this class.
32 33 34 |
# File 'lib/vedeu/cells/borders/horizontal.rb', line 32 def defaults super.merge!(value: Vedeu.esc.horizontal) end |
#text ⇒ 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.
20 21 22 |
# File 'lib/vedeu/cells/borders/horizontal.rb', line 20 def text '-' 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.
25 26 27 |
# File 'lib/vedeu/cells/borders/horizontal.rb', line 25 def type :horizontal end |