You are here

public function PHPExcel_Worksheet_BaseDrawing::setResizeProportional in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php \PHPExcel_Worksheet_BaseDrawing::setResizeProportional()

Set ResizeProportional

Parameters

boolean $pValue:

Return value

PHPExcel_Worksheet_BaseDrawing

1 method overrides PHPExcel_Worksheet_BaseDrawing::setResizeProportional()
PHPExcel_Worksheet_HeaderFooterDrawing::setResizeProportional in vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php
Set ResizeProportional

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php, line 409

Class

PHPExcel_Worksheet_BaseDrawing
PHPExcel_Worksheet_BaseDrawing

Code

public function setResizeProportional($pValue = true) {
  $this->_resizeProportional = $pValue;
  return $this;
}