update changelog and doc

This commit is contained in:
troosan 2018-03-11 15:02:24 +01:00
parent e29a3e7c10
commit a0111be6ae
3 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,7 @@ v0.15.0 (?? ??? 2018)
- Add support for MACROBUTTON field @phryneas @troosan #1021
- Add support for Hyphenation @Trainmaster #1282 (Document: `autoHyphenation`, `consecutiveHyphenLimit`, `hyphenationZone`, `doNotHyphenateCaps`, Paragraph: `suppressAutoHyphens`)
- Added support for Floating Table Positioning (tblpPr) @anrikun #639
- Added support for Image text wrapping distance @troosan #1310
### Fixed
- Fix reading of docx default style - @troosan #1238

View File

@ -154,6 +154,10 @@ Available Image style options:
- ``marginTop``. Top margin in inches, can be negative.
- ``width``. Width in pixels.
- ``wrappingStyle``. Wrapping style, *inline*, *square*, *tight*, *behind*, or *infront*.
- ``wrapDistanceTop``. Top text wrapping in pixels.
- ``wrapDistanceBottom``. Bottom text wrapping in pixels.
- ``wrapDistanceLeft``. Left text wrapping in pixels.
- ``wrapDistanceRight``. Right text wrapping in pixels.
.. _numbering-level-style:

View File

@ -17,9 +17,9 @@
namespace PhpOffice\PhpWord\Writer\HTML;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Element\Text as TextElement;
use PhpOffice\PhpWord\Element\TrackChange;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Writer\HTML;
use PhpOffice\PhpWord\Writer\HTML\Element\Text;