PHPExcel - Como posso ler a planilha do Excel linha por linha

Como posso ler a planilha do Excel linha por linha usando PHPExcel? Eu tenho uma planilha contém mais de 100000 linhas, mas quero ler apenas 500 linhas.

$sheetData = $objPHPExcel->getActiveSheet();
$highestRow = $sheetData->getHighestRow(); 
$highestColumn = $sheetData->getHighestColumn(); 
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); 

echo '<table>';
for ($row = 1; $row <= $highestRow; ++$row) {
    echo '<tr>';

    for ($col = 0; $col <= $highestColumnIndex; ++$col) {
    echo '<td>' . $sheetData->getCellByColumnAndRow($col, $row)->getValue() . '</td>';
    }

    echo '</tr>';
}
echo '</table>';

questionAnswers(4)

yourAnswerToTheQuestion