The following example shows the effect that this parameter has
on PDF rendering.
Set theDoc = Server.CreateObject("ABCpdf12.Doc")
theDoc.Read "c:\mypics\Annotations.pdf"
theDoc.Rect.Pin = 1
theDoc.Rect.Height = 300
' Render document with DrawAnnotations (default)
theDoc.Rendering.Save
"c:\mypdfs\RenderingDrawAnnotationsTrue.png"
' Render document without DrawAnnotations
theDoc.Rendering.DrawAnnotations = False
theDoc.Rendering.Save
"c:\mypdfs\RenderingDrawAnnotationsFalse.png"
theDoc.Clear

RenderingDrawAnnotationsTrue.png

RenderingDrawAnnotationsFalse.png
|