getValue() public method

Returns the value for the given column on the given row.
public getValue ( integer $row, integer $column )
$row integer
$column integer
Esempio n. 1
0
 /**
  * Returns the value for the given column on the given row.
  *
  * @param int $row
  * @param int $column
  */
 public function getValue($row, $column)
 {
     $this->loadData();
     return parent::getValue($row, $column);
 }