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 MyPdfAnnotationTool(PdfJsApp app, bool canUseEditMode) : base(app, canUseEditMode)
{
}
protected override bool GetAnnotationVisibility(PdfAnnotationView view)
{
if (InteractionMode == PdfAnnotationInteractionMode.Edit)
{
return !(view.Annotation.Flags.HasFlag(PdfAnnotationFlags.Hidden) ||
view.Annotation.Flags.HasFlag(PdfAnnotationFlags.Locked));
}
return base.GetAnnotationVisibility(view);
}
But now i have to rework my Code to work with VintaSoft Annotations as well, since i the UndoManager is actually the more important feature then the Multiple-Selection (see also my Suggestion for 8.7 here)