@@ 402-405 (lines=4) @@ | ||
399 | $this->append('<dt>Alignment Indent</dt><dd>'.$oParagraph->getAlignment()->getIndent().' px</dd>'); |
|
400 | $this->append('<dt>Alignment Level</dt><dd>'.$oParagraph->getAlignment()->getLevel().'</dd>'); |
|
401 | $this->append('<dt>Bullet Style</dt><dd> Bullet::'.$this->getConstantName('\PhpOffice\PhpPresentation\Style\Bullet', $oParagraph->getBulletStyle()->getBulletType()).'</dd>'); |
|
402 | if ($oParagraph->getBulletStyle()->getBulletType() != Bullet::TYPE_NONE) { |
|
403 | $this->append('<dt>Bullet Font</dt><dd>' . $oParagraph->getBulletStyle()->getBulletFont() . '</dd>'); |
|
404 | $this->append('<dt>Bullet Color</dt><dd>' . $oParagraph->getBulletStyle()->getBulletColor()->getARGB() . '</dd>'); |
|
405 | } |
|
406 | if ($oParagraph->getBulletStyle()->getBulletType() == Bullet::TYPE_BULLET) { |
|
407 | $this->append('<dt>Bullet Char</dt><dd>'.$oParagraph->getBulletStyle()->getBulletChar().'</dd>'); |
|
408 | } |
|
@@ 409-412 (lines=4) @@ | ||
406 | if ($oParagraph->getBulletStyle()->getBulletType() == Bullet::TYPE_BULLET) { |
|
407 | $this->append('<dt>Bullet Char</dt><dd>'.$oParagraph->getBulletStyle()->getBulletChar().'</dd>'); |
|
408 | } |
|
409 | if ($oParagraph->getBulletStyle()->getBulletType() == Bullet::TYPE_NUMERIC) { |
|
410 | $this->append('<dt>Bullet Start At</dt><dd>'.$oParagraph->getBulletStyle()->getBulletNumericStartAt().'</dd>'); |
|
411 | $this->append('<dt>Bullet Style</dt><dd>'.$oParagraph->getBulletStyle()->getBulletNumericStyle().'</dd>'); |
|
412 | } |
|
413 | $this->append('<dt>Line Spacing</dt><dd>'.$oParagraph->getLineSpacing().'</dd>'); |
|
414 | $this->append('<dt>RichText</dt><dd><dl>'); |
|
415 | foreach ($oParagraph->getRichTextElements() as $oRichText) { |