You are here

public function PHPExcel_Cell_Hyperlink::setUrl in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php \PHPExcel_Cell_Hyperlink::setUrl()

Set URL

Parameters

string $value:

Return value

PHPExcel_Cell_Hyperlink

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php, line 80

Class

PHPExcel_Cell_Hyperlink
PHPExcel_Cell_Hyperlink

Code

public function setUrl($value = '') {
  $this->_url = $value;
  return $this;
}