abstract class Tablo::Cell
- Tablo::Cell
- Reference
- Object
Overview
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.
Direct Known Subclasses
Defined in:
cell.crInstance Method Summary
-
#content
Returns the formatted value of the Cell, after applying the formatter for this column (but without applying any wrapping or styling).
-
#value
Returns the raw value of the cell, as a
Tablo::CellType
Instance Method Detail
Returns the formatted value of the Cell, after applying the formatter for this column (but without applying any wrapping or styling).