Search found 4 matches

by bhattarai
Tue Feb 16, 2016 2:07 pm
Forum: Annotations
Topic: BorderWidth of FreeHandHighlighter is really big
Replies: 2
Views: 6408

Re: BorderWidth of FreeHandHighlighter is really big

Thank you for the answer. Got it right now.

Code: Select all

  GdViewer.AddFreeHandHighlighterAnnotInteractive(System.Windows.Media.Color.FromRgb(255,255,0), 0.2f, true);
by bhattarai
Mon Feb 15, 2016 6:54 pm
Forum: Annotations
Topic: BorderWidth of FreeHandHighlighter is really big
Replies: 2
Views: 6408

BorderWidth of FreeHandHighlighter is really big

https://www.gdpicture.com/guides/gdpicture/GdPicture.NET.14~GdPicture14.GdViewer~AddFreeHandHighlighterAnnotInteractive(Color,Single,Boolean).html public void AddFreeHandHighlighterAnnotInteractive( Color BorderColor, float BorderWidth, bool ContinuousMode ) I wanted to use AddFreeHandHighlighterAnn...
by bhattarai
Fri Feb 12, 2016 2:37 pm
Forum: Annotations
Topic: How to read text from AnnotationText?
Replies: 2
Views: 6525

Re: How to read text from AnnotationText?

Sorry for asking. Got the answer. int annot_idx = GdViewer1.GetSelectedAnnotationIdx(); if (annot_idx != -1) { GdPicture.Annotation annot = GdViewer1.GetAnnotationFromIdx(annot_idx); if (annot.GetAnnotationType == GdPicture.Annotation.GdPictureAnnotationType.AnnotationTypeText) { AnnotationText text...
by bhattarai
Fri Feb 12, 2016 10:54 am
Forum: Annotations
Topic: How to read text from AnnotationText?
Replies: 2
Views: 6525

How to read text from AnnotationText?

I added the annotation with following command. GdViewer.AddTextAnnotationInteractive(message, textColor, "Arial", System.Drawing.FontStyle.Regular, 12, true, backgroundColor, backgroundColor, 1, 0); I would like to read the text that is inside the textannotation and save it somewhere else ...