Search found 17 matches

by MichaelHerrmanns
Fri Jan 13, 2012 3:24 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Problem Viewing Text Annotation
Replies: 6
Views: 10655

Problem Viewing Text Annotation

Hello Alex, your annotation tool is in our project a alternative to imagine professional. We work with also with older documents that have textannotation created with imagine pro. In some of them are letters like "ü ö ä ß". In your annotationviewer they dont show like "ü ö ä ß" t...
by MichaelHerrmanns
Fri Jan 13, 2012 11:25 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11814

Re: Size of an Stampannotation

Hello Alex,

thank you for your tip.
It works now.

Best regards

Michael
by MichaelHerrmanns
Wed Jan 11, 2012 3:38 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11814

Re: Size of an Stampannotation

Hi Alex,

I have one additional question.
If I you your code:

Code: Select all

annotationViewer1.Annotations(0).Add(ann)
only on the first page of my document can take the annotation.
How can I tell them to build the annotation on the selected page?

Best regards

Michael
by MichaelHerrmanns
Tue Jan 03, 2012 9:52 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11814

Re: Size of an Stampannotation

Hello Alex, thank you for your reply. I am late, butI was on my christmas vacation. #Do you need to specify minimal size of annotation before building? Yes thats my goal. The User create with an stamp a stampannotation and this should be in default size. After that the user can change the size of th...
by MichaelHerrmanns
Tue Dec 20, 2011 3:50 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11814

Size of an StampAnnotation

Hello, how can I create a Stampannotation with an userdefinded size on mouse click. I try with this code: Dim ann As New StampAnnotation() ann.Text = "Rubber stamp" ann.ZOrder = _zOrder ann.Size = New SizeF(450, 800) _zOrder += 1 Try annotationViewer1.BuildAnnotation(ann) Catch ex As Inval...
by MichaelHerrmanns
Wed Nov 09, 2011 4:17 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Set Annotation visible false
Replies: 2
Views: 9831

Re: Set Annotation visible false

Hello Alex,

Thank you very much.

Now it is working.

Best regards

Michael
by MichaelHerrmanns
Mon Aug 22, 2011 3:22 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Set Annotation visible false
Replies: 2
Views: 9831

Set Annotation visible false

Hello, I want to write a function to switch all annotations of a image to visible false or true. For this I use this code: Dim images As ImageCollection = AnnotationViewer1.Images Dim annotations As AnnotationController = New AnnotationController(images) Dim imageIndex As Integer, annoIndex As Integ...