up vote 0 down vote favorite
share [g+] share [fb]

I'm working on PowerPoint 2003 presentation conversion into some format, and I'm confused very much at one moment. Really, I can't understand what I'm doing wrong for almost two days wasting my time for this i-thought-it-was-tiny problem. I use PowerPoint Object Model to get the presentation document structure and its layout, all the shapes I render are converted with no problems, non-list paragraphs are converted pretty well too. But the text frames with numbered or bulletted lists are dispositioned.

I thought that the following code should work pretty well too. Actually, I've failed:

bulletLeft = currentTextRange.BoundLeft;

currentTextRange.BoundLeft actually returns the position of the bulletted list item text that should be placed here. But I don't understand, I can't understand, etc: how to get X-position of the list item paragraph bullet?

I understand, it's a little problem in real but I'm wasted solving it.
Thank you.

link|improve this question

feedback

2 Answers

Nevermind, guys. It was my friend's bug on text rendering. The bullet position should be set with the following code:

bulletLeft = shape.Left + shape.TextFrame.MarginLeft;

Sorry for disturbing.

link|improve this answer
actually it's ugly solution indeed ((( – Lyubomyr Shaydariv Nov 13 '09 at 17:35
feedback
up vote 0 down vote accepted
left += Shape.TextFrame.Ruler.Levels[IndentLevel].FirstMargin;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.