Class: Vedeu::Cells::Clear Private
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 with a custom value, colour and style.
The Vedeu::Cells::Clear object represents a cleared cell using the space character.
Instance Method Summary collapse
- #cell? ⇒ Boolean private
- #type ⇒ Symbol private
- #value ⇒ String (also: #text) private
Instance Method Details
#cell? ⇒ Boolean
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.
18 19 20 |
# File 'lib/vedeu/cells/clear.rb', line 18 def cell? false 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.
23 24 25 |
# File 'lib/vedeu/cells/clear.rb', line 23 def type :clear end |
#value ⇒ String Also known as: text
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.
28 29 30 |
# File 'lib/vedeu/cells/clear.rb', line 28 def value ' ' end |