class

Tablo::Cell

Inherits Reference < Object

In Tablo, the Cell class and its subclasses, along with the Table class itself, form the core of the library's functionality.
However, methods and classes of the Cell type are mainly for internal use, so the Cell class has very limited public interface.

Cell is an abstract class representing a single cell inside a Table.
Derived concrete cells are : Cell::Text and Cell::Data

It is made up of several attributes and methods, including the value attribute, of type Tablo::CellType, which holds the raw content of each element from the data source.

Instance methods

content

Returns the formatted value of the Cell, after applying the formatter for this column (but without applying any wrapping or styling).

Source
value

Returns the raw value of the cell, as a Tablo::CellType

Source

Nested types