public function PHPExcel_Cell_Hyperlink::isInternal in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php \PHPExcel_Cell_Hyperlink::isInternal()
Is this hyperlink internal? (to another worksheet)
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell/ Hyperlink.php, line 110
Class
- PHPExcel_Cell_Hyperlink
- PHPExcel_Cell_Hyperlink
Code
public function isInternal() {
return strpos($this->_url, 'sheet://') !== false;
}