abstract class Tablo::Cell

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.cr

Instance Method Summary

Instance Method Detail

def content #

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


[View source]
def value #

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


[View source]