Mike Clark
unread,Sep 19, 2011, 4:13:51 AM9/19/11You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I've managed to create an application that builds PPT presentations
from an Xml database, but I really need to get better control over
what appears in the text fields. For example, in the layout
"ppLayoutText" when I put text into the TextRange[2] object, it goes
in with bullet points. I would like to be able to somehow not have
bullet points. Here's the code I'm using:
objTextRng = objSlide.Shapes[2].TextFrame.TextRange;
objTextRng.Text = "Text";
The second desire is to mix fonts and font sizes in a single
TextRange. Is there a way to do this?
And is there a more-or-less comprehensive document somewhere that
explains all this?