Fix use of < and > (by escaping) in documentation for createSheet()
This commit is contained in:
parent
71dba49fff
commit
391d7cbd9d
|
@ -46,7 +46,7 @@ You can add a new worksheet to the workbook using the `createSheet()` method of
|
|||
$objPHPExcel->createSheet();
|
||||
```
|
||||
|
||||
A new worksheet created using this method will be called "Worksheet<n>"<22> where "<n>"<22> is the lowest number possible to guarantee that the title is unique.
|
||||
A new worksheet created using this method will be called "Worksheet\<n\>"<22> where "\<n\>"<22> is the lowest number possible to guarantee that the title is unique.
|
||||
|
||||
Alternatively, you can instantiate a new worksheet (setting the title to whatever you choose) and then insert it into your workbook using the addSheet() method.
|
||||
|
||||
|
|
Loading…
Reference in New Issue