You are here

public function PHPExcel_Comment::setMarginLeft in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php \PHPExcel_Comment::setMarginLeft()

Set left margin (CSS style, i.e. XXpx or YYpt)

Parameters

string $value:

Return value

PHPExcel_Comment

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php, line 210

Class

PHPExcel_Comment
PHPExcel_Comment

Code

public function setMarginLeft($value = '59.25pt') {
  $this->_marginLeft = $value;
  return $this;
}