class Cell

This class allows the storage and retrieval of the attributes of a cell

Properties

private Column $column
private string $value

Methods

void
__construct(Cell $column, string $value = "")

Constructor of class Cell

getColumn()

Returns the column that contains the cell

string
getValue()

Returns the value of the cell

void
setValue(string $value)

Sets the value of the cell

Details

at line 63
void __construct(Cell $column, string $value = "")

Constructor of class Cell

Parameters

Cell $column Column that defines this cell
string $value (default: "") Cell value

Return Value

void

at line 75
Column getColumn()

Returns the column that contains the cell

Return Value

Column the value of column

at line 86
string getValue()

Returns the value of the cell

Return Value

string the Cell value

at line 98
void setValue(string $value)

Sets the value of the cell

Parameters

string $value Cell value

Return Value

void