public function PHPExcel_Worksheet::hyperlinkExists in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::hyperlinkExists()
Hyperlink at a specific coordinate exists?
Parameters
string $pCoordinate:
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php, line 2709
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function hyperlinkExists($pCoordinate = 'A1') {
return isset($this->_hyperlinkCollection[$pCoordinate]);
}