Search found 3 matches

by TimG
Tue Mar 24, 2020 8:23 pm
Forum: Annotations
Topic: Annotate PDF/A
Replies: 1
Views: 7286

Annotate PDF/A

Hello,

when we annotate a PDF/A document with gdviewer and validate the resulting document for PDF/A compliance the result is N/G.
Is it not possible to have PDF/A compliant pdf document with annotations created by gdpicture?
Maybe i am missing something here...

Thanks in advance,
Tim
by TimG
Mon Sep 03, 2018 1:25 pm
Forum: Document Viewing
Topic: gdViewer Annotation Tooltip
Replies: 5
Views: 13706

Re: gdViewer Annotation Tooltip

Here is my attempt… Private Sub SetAnnotationsToolTips() Dim tt As New ToolTip For i As Integer = 0 To gdViewer.GetAnnotationCount Dim anno As GdPicture14.Annotations.Annotation = gdViewer.GetAnnotationFromIdx(i) tt.SetToolTip(anno, anno.Author & vbCrLf & anno.CreationTime.ToString("dd....
by TimG
Fri Aug 24, 2018 4:41 pm
Forum: Document Viewing
Topic: gdViewer Annotation Tooltip
Replies: 5
Views: 13706

gdViewer Annotation Tooltip

Hello, using the gdviewer showing a pdf/tiff and the mouse is moved over an annotation i want to show a Tooltip containing information about the annotation (author,creation date,...). I´m a little stuck here because the annotation is not a winforms object that a Tooltip can be added to, so any hints...