PHPOffice / PHPPresentation

A pure PHP library for reading and writing presentations documents
https://phpoffice.github.io/PHPPresentation
Other
1.31k stars 521 forks source link

[REQ][HELP]Adding equally spaced text boxes #244

Open kirobo opened 8 years ago

kirobo commented 8 years ago

I want to create 4 text boxes of width 300 which are equally spaced. Can someone please help?

$x = (10*$i) + 300;
$y = $x * 100;
I'm trying to do it like this:
shape = $currentSlide->createRichTextShape()
                            ->setHeight(100)
                            ->setWidth(300)
                            ->setOffsetX($x)
                            ->setOffsetY($y);

kirobo commented 8 years ago

@Progi1984