Class: Vedeu::Cells::Clear Private

Inherits:
Empty
  • Object
show all
Defined in:
lib/vedeu/cells/clear.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 with a custom value, colour and style.

The Vedeu::Cells::Clear object represents a cleared cell using the space character.

Instance Method Summary collapse

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.

Returns:



18
19
20
# File 'lib/vedeu/cells/clear.rb', line 18

def cell?
  false
end

#typeSymbol

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.

Returns:

  • (Symbol)


23
24
25
# File 'lib/vedeu/cells/clear.rb', line 23

def type
  :clear
end

#valueString 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.

Returns:

  • (String)


28
29
30
# File 'lib/vedeu/cells/clear.rb', line 28

def value
  ' '
end