PPT Automation: eliminating bullet points and mixing fonts
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?
.
Relevant Pages
- PowerPoint Automation - Mixing fonts etc
... from an Xml database, but I really need to get better control over ... in with bullet points. ... The second desire is to mix fonts and font sizes in a single ... (microsoft.public.office.developer.automation) - Re: bullets
... Using Arial font style, for example, the bullet is chr. ... In the Form and Table, it will appear as a single wide vertical bar, ... Or you could use an unbound control. ... (microsoft.public.access.reports) - Re: Todays smoke
... I prefer Chris Rock's idea: ... "You don't need no gun control. ... We need some bullet control. ... People would think before they killed somebody, if a bullet cost $5,000. ... (alt.smokers.cigars) - Re: How do I disable pre-sets for outlines so I can outline manually?
... You can't control the Bullet and Numbering buttons on the Formatting ... by attaching it to paragraph styles. ... (microsoft.public.word.docmanagement) - Re: Paragraph formatting in rich text control
... FWIW, if I type something in a RichText control, then click the Bulleted List ... the bullet appears *outside* the content control. ... a new paragraph appears and the bullets for both paragraphs are inside the ... The fact that your bullet formatting was applied to the ... (microsoft.public.word.docmanagement) |
|