101 lines
2.8 KiB
Markdown
101 lines
2.8 KiB
Markdown
# PHPExcel Developer Documentation
|
||
|
||
## Credits
|
||
|
||
Please refer to the internet page [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home][22] for up-to-date credits.
|
||
|
||
## Valid array keys for style applyFromArray()
|
||
|
||
The following table lists the valid array keys for PHPExcel_Style applyFromArray() classes. If the "Maps to property"<22> column maps a key to a setter, the value provided for that key will be applied directly. If the "Maps to property" column maps a key to a getter, the value provided for that key will be applied as another style array.
|
||
|
||
__PHPExcel_Style__
|
||
|
||
Array key | Maps to property
|
||
-------------|-------------------
|
||
fill | getFill()
|
||
font | getFont()
|
||
borders | getBorders()
|
||
alignment | getAlignment()
|
||
numberformat | getNumberFormat()
|
||
protection | getProtection()
|
||
|
||
|
||
__PHPExcel_Style_Fill__
|
||
|
||
Array key | Maps to property
|
||
-----------|-------------------
|
||
type | setFillType()
|
||
rotation | setRotation()
|
||
startcolor | getStartColor()
|
||
endcolor | getEndColor()
|
||
color | getStartColor()
|
||
|
||
|
||
__PHPExcel_Style_Font__
|
||
|
||
Array key | Maps to property
|
||
------------|-------------------
|
||
name | setName()
|
||
bold | setBold()
|
||
italic | setItalic()
|
||
underline | setUnderline()
|
||
strike | setStrikethrough()
|
||
color | getColor()
|
||
size | setSize()
|
||
superScript | setSuperScript()
|
||
subScript | setSubScript()
|
||
|
||
|
||
__PHPExcel_Style_Borders__
|
||
|
||
Array key | Maps to property
|
||
------------------|-------------------
|
||
allborders | getLeft(); getRight(); getTop(); getBottom()
|
||
left | getLeft()
|
||
right | getRight()
|
||
top | getTop()
|
||
bottom | getBottom()
|
||
diagonal | getDiagonal()
|
||
vertical | getVertical()
|
||
horizontal | getHorizontal()
|
||
diagonaldirection | setDiagonalDirection()
|
||
outline | setOutline()
|
||
|
||
|
||
__PHPExcel_Style_Border__
|
||
|
||
Array key | Maps to property
|
||
----------|-------------------
|
||
style | setBorderStyle()
|
||
color | getColor()
|
||
|
||
|
||
__PHPExcel_Style_Alignment__
|
||
|
||
Array key | Maps to property
|
||
------------|-------------------
|
||
horizontal | setHorizontal()
|
||
vertical | setVertical()
|
||
rotation | setTextRotation()
|
||
wrap | setWrapText()
|
||
shrinkToFit | setShrinkToFit()
|
||
indent | setIndent()
|
||
|
||
|
||
__PHPExcel_Style_NumberFormat__
|
||
|
||
Array key | Maps to property
|
||
----------|-------------------
|
||
code | setFormatCode()
|
||
|
||
|
||
__PHPExcel_Style_Protection__
|
||
|
||
Array key | Maps to property
|
||
----------|-------------------
|
||
locked | setLocked()
|
||
hidden | setHidden()
|
||
|
||
|
||
[22]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Credits&referringTitle=Home
|