Is there any way to change the zoom level for Named Destinations? If it were a DEST entry one can simply use:
[...]
PdfArray d = annotation.getAsArray(PdfName.DEST);
if (d != null && d.size() == 5 && PdfName.XYZ.equals(d.getAsName(1)))
d.set(4, new PdfNumber(0));
but for Named Destinations apparently there isn't any way to change the zoom. For example in the following link you see that on page 10 there isn't any "DEST" entry but an "A" one and the named destination is "se" but there isn't any way to change the zoom:
http://farm4.staticflickr.com/3846/14564676380_2f47b4b238_b.jpg
Many thanks in advance,
Cesar