Hallo, I create list Items by:
Paragraph p2 = s1.addParagraph("This is a paragraph...");
List list = s1.addList();
list.setDecorator(new NumberDecorator(target));
ListItem item = list.addItem("this is the first item");
item = list.addItem("this is the second item");
item = list.addItem("this is the third item");
How can I format the content of a list item? I tried to retieve a
TextSelection of the list item but i did not succeed.
Thanks in advance.
Gio
