You are here

public function PHPExcel_Cell_DataValidation::setShowInputMessage in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php \PHPExcel_Cell_DataValidation::setShowInputMessage()

Set Show InputMessage

Parameters

boolean $value:

Return value

PHPExcel_Cell_DataValidation

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php, line 330

Class

PHPExcel_Cell_DataValidation
PHPExcel_Cell_DataValidation

Code

public function setShowInputMessage($value = false) {
  $this->_showInputMessage = $value;
  return $this;
}