On Wed, 2007-06-20 at 14:00 +0200, Dominik Gundacker wrote: > I set the Layout property of the drawpage to 1 ( > http://api.openoffice.org/docs/common/ref/com/sun/star/presentation/DrawPage.html#Layout > ), > which means this drawpage gets a title on the top and a textbox in the > middle of the slide with bullet numbering. > When I want to fill the textshape with the bulletnumbering I can > easily add > new lines with new bullets. > I just use a TextCursor and add the hexcode of a linebreak (0d0a) > after each > line, but when it comes to the point where I want > to got to the next level of the numbering I am stuck. > I tried to add a tab again with using the hexcode (09). But this just > moves > the text to the right, the bulletpoint stays in the first level. > Is there any solution for this problem?
-bulleted list item are new paragraph, not new lines. So you have to insert a new paragraph break -you have to set the property "NumberingLevel" to set the level in the bulletted list. See: http://api.openoffice.org/docs/DevelopersGuide/Text/Text.xhtml The use of Tab is just a convenience of the UI. Hub --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
