We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872ef4a commit 098a0c6Copy full SHA for 098a0c6
README.md
@@ -248,13 +248,16 @@ As you have access to the `PHPExcel` object you can also "manually" modify the e
248
249
```php
250
<?php
251
+// Create the actual workbook and sheets
252
+$file->createSheets();
253
$file
254
->getWorkbook();
255
->getSheet(1)
256
->getStyle('B1')
257
->getFont()
258
->getColor()
259
->setARGB(\PHPExcel_Style_Color::COLOR_RED);
260
+$file->send();
261
```
262
263
Alternatively you can also use the callback feature from our `ExcelSheet`:
0 commit comments