I have the code from the concat_pdf.java file working with the

HashMap parent = new HashMap();
parent.put("Title", "Parent");
parent.put("Action", "GoTo");
parent.put("Page", fPage+" Fit");
master.add(parent);

Is there a list of additional properties?

What I am looking for is how to create a child bookmark using the HashMap
creation.

I.e.

HashMap parent = new HashMap();
parent.put("Title", "Parent");
parent.put("Action", "GoTo");
parent.put("Page", fPage+" Fit");HashMap child = new HashMap();
child.put("Title", "Child);
child.put("Action", "GoTo");
child.put("Page", "2 Fit");

parent.put("Child", child);
master.add(parent);


Thank you in advance!






-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to