Search found 27 matches

by reisrf
Mon Jun 15, 2015 7:06 pm
Forum: Feature Requests
Topic: Showing more the one page (scrolling)
Replies: 10
Views: 17346

Re: Showing more the one page (scrolling)

Romain, thanks for the reply. Do you have any idea when this future release with this functionality can come? 1 month? 1 year? Thanks
by reisrf
Fri Jun 12, 2015 1:50 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

I have found I had an old GDPicture dll in the path. Now I have the latest and I can find the EnsureRegionVisibility. THANKS!
by reisrf
Thu Jun 11, 2015 9:09 pm
Forum: Example requests & Code samples
Topic: Positioning a C# panel just bellow an annotation
Replies: 3
Views: 3180

Positioning a C# panel just bellow an annotation

I have a windows form with a gdviewer. On this gdViewr I am loading a PDF and the user can add annotations. When the user select one annotation, I would like to position a C# panel just below the annotation selected. The problem is, I have the annotation rectangle info (left, top, width, right), but...
by reisrf
Thu Jun 11, 2015 9:03 pm
Forum: Feature Requests
Topic: Showing more the one page (scrolling)
Replies: 10
Views: 17346

Showing more the one page (scrolling)

I have a PDF with multiple pages. I am displaying it using the GDViewer. The GDviewer shows only one page at a time. Is there some way to enable the scroll and allow the user to scroll and see for instance, end of page 1 and the begin of page 2? Like Adobe reader allows when we select View-Page Disa...
by reisrf
Sun May 31, 2015 2:02 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

Just correcting my previous reply, in the documentation I CAN FIND the method EnsureRegionVisibility. But in the class I can't.
by reisrf
Sun May 31, 2015 2:50 am
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

I can´t find in the documentation:
GdPicture11 Namespace > GdViewer Class : EnsureRegionVisibility Method

But when I write
gdViewer1. , in the intelisense I can see

...
EnableTextSelection
EndInvoke NO EnsureRegionVisibility
Enter
Equals
...
by reisrf
Fri May 29, 2015 10:59 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

Loïc, just to confirm, the method EnsureRegionVisibility(). is not available in the version I am using, right?
by reisrf
Fri May 29, 2015 10:20 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

Loïc,
Many thanks. I have managed with your tips. You can close the case.

many thanks for your support.

Robson Reis
by reisrf
Fri May 29, 2015 1:10 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

Complementing my previous post, in version 11.1.14 the method EnsureRegionVisibility is not available in gdViewer. I am stucked here.
by reisrf
Thu May 28, 2015 9:08 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

Re: How to scroll the image to a make a region visible

Loic, thanks for the reply, but I have 2 problems:
1) When I do gdViewer. I can´t find in intelisens the EnsureRegionVisibility
2) If I solve issue 1, how can I get the RegionId? Do I need to create a Region and then call the EnsureRegionVisibility?

Thanks

Robson Reis
by reisrf
Thu May 28, 2015 4:43 pm
Forum: Example requests & Code samples
Topic: How to scroll the image to a make a region visible
Replies: 10
Views: 7027

How to scroll the image to a make a region visible

I am a beginner. I would like to know how can I scroll the image to make a specific region in the image visible? I have tried: annotMgr.SelectPage(pageToShow); gdViewer1.LockViewer = true; gdViewer1.ZoomArea(1, 1 , 2000 , 500); gdViewer1.LockViewer = false; gdViewer1.Redraw(); But the result is, the...