[iText-questions] RTF Table of Contents Font

2005-09-02 Thread Chirdeep Sharma
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.",

[iText-questions] Is it possible to deep lists in word

2005-06-02 Thread Chirdeep Sharma
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

[iText-questions] RTF Lettered Lists

2005-05-31 Thread Chirdeep Sharma
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