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(Column $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 62
void __construct(Column $column, string $value = "")

Constructor of class Cell

Parameters

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

Return Value

void

at line 74
Column getColumn()

Returns the column that contains the cell

Return Value

Column the value of column

at line 85
string getValue()

Returns the value of the cell

Return Value

string the Cell value

at line 97
void setValue(string $value)

Sets the value of the cell

Parameters

string $value Cell value

Return Value

void