I am trying to insert a HTML list (<ul> or <ol>) into my presentation with the addFromHtml method.
The result I am getting is just list items separated with carriage returns with no bullets or any kind of list formatting.
e.g->
- Code: Select all
<ol>
<li>One</li>
<li>Two</li>
</ol>
Should be->
1. One
2. Two
But is->
One
Two
(One\rTwo as Shape.TextFrame.Text propery or as two paragraphs)
Is there a way to copy the html list structure into the presentation as a Power Point list?
Thanks in advance,
Dusan