Prev SummaryInformation |
ExcelExplorer Manual |
Next EEWorksheet class |
 |
(ExcelExplorer 4.0)
Returns object of EEHelper class.
EEHelper Helper( )
Parameters
- None
Description
EEHelper class (as the name indicates) have some useful functions
to make your life easier while developing your own application using ExcelExplorer.
You can use functions like converting number to date representation used by Excel;
easily obtaining CSS border styles, etc.
ExcelExplorer never uses these functions.
You can use it to reduce programming time and to write more clean, comprehensible code.
Print CSS border style
<?php
echo $ee->Helper()->CSSBorderStyle(EE_BORDER_MEDIUM_DASHED); // prints '2px dashed'
?>
|