/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Worksheet
NameSizeModeActions
AutoFilter/-0755rm
Drawing/-0755rm
AutoFilter.php392780644editdlrm
BaseDrawing.php112810644editdlrm
CellIterator.php23230644editdlrm
Column.php24470644editdlrm
ColumnCellIterator.php66040644editdlrm
ColumnDimension.php30240644editdlrm
ColumnIterator.php57280644editdlrm
Dimension.php39450644editdlrm
Drawing.php38200644editdlrm
HeaderFooter.php129810644editdlrm
HeaderFooterDrawing.php79390644editdlrm
MemoryDrawing.php50140644editdlrm
PageMargins.php44560644editdlrm
PageSetup.php291040644editdlrm
Protection.php113890644editdlrm
Row.php24190644editdlrm
RowCellIterator.php72090644editdlrm
RowDimension.php30150644editdlrm
RowIterator.php49620644editdlrm
SheetView.php49260644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Worksheet/RowDimension.php (3015B)
rowIndex = $pIndex; // set dimension as unformatted by default parent::__construct(null); } /** * Get Row Index * * @return int */ public function getRowIndex() { return $this->rowIndex; } /** * Set Row Index * * @param int $pValue * @return PHPExcel_Worksheet_RowDimension */ public function setRowIndex($pValue) { $this->rowIndex = $pValue; return $this; } /** * Get Row Height * * @return double */ public function getRowHeight() { return $this->height; } /** * Set Row Height * * @param double $pValue * @return PHPExcel_Worksheet_RowDimension */ public function setRowHeight($pValue = -1) { $this->height = $pValue; return $this; } /** * Get ZeroHeight * * @return bool */ public function getZeroHeight() { return $this->zeroHeight; } /** * Set ZeroHeight * * @param bool $pValue * @return PHPExcel_Worksheet_RowDimension */ public function setZeroHeight($pValue = false) { $this->zeroHeight = $pValue; return $this; } }