public function PHPExcel_Style_Alignment::getIndent in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php \PHPExcel_Style_Alignment::getIndent()
* Get indent * *
Return value
int
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Alignment.php, line 377
Class
- PHPExcel_Style_Alignment
- PHPExcel_Style_Alignment
Code
public function getIndent() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getIndent();
}
return $this->_indent;
}