public function PHPExcel_Comment::setMarginTop in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php \PHPExcel_Comment::setMarginTop()
Set top margin (CSS style, i.e. XXpx or YYpt)
Parameters
string $value:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Comment.php, line 230
Class
- PHPExcel_Comment
- PHPExcel_Comment
Code
public function setMarginTop($value = '1.5pt') {
$this->_marginTop = $value;
return $this;
}