Hi,
I am generating the TOC using the following code:
Paragraph p = new Paragraph();
Paragraph para = new Paragraph();
para.add(new RtfTableOfContents(
"RIGHT CLICK HERE AND SELECT \"UPDATE FIELD\" TO UPDATE.",
This kind of list creation works in PDF but the same code does not work in word.
1.1 (Section number)
A.
1.
a.
2.
B.
1.
a.
b.
i.
ii.
2.
1.2 (Section number).
Is there a way to create this kind of list in word using
I am creating a list with default letter 'A' as starting. It creates the list in
PDF correctly but in RTF it creates a bullet instead of A.
The code:
List l = new List(false, true, 10);
l.setFirst('A');
l.add("This is a test");
List