VintaSoft PDF .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft PDF .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft PDF .NET Plug-in Discussions
public override void SetAppearance(PdfAnnotation annotation)
{
PdfInkAnnotation inkAnnotation = annotation as PdfInkAnnotation;
using (PdfGraphics graphics = annotation.CreateNormalAppearanceGraphics())
{
graphics.DrawX and then some manipulation of inkAnnotation.InkPoints[0] to fit the parameters.
}
}
Thanks!
The annotation has a Point[][] and I'm trying to get that run in a PdfGraphics.DrawX method. I've tried most of them but I'm not getting anything to show up (when I remove my code it works fine). Do you have any advice on what I may be doing wrong?In your code you are defining PDF annotation appearance from scratch - do not do this.