Using Third Party control DocumentView from OpenText in C# Windows Application

80 Views Asked by At

The purpose of DocumentView control is to display images. From a C# Form, this DocumentView control is added. This DocumentView Control has a menu item where we can select document number from a dropdown so that it changes the image by document number.

I am able to zoom in a particular area in the image to zoom it a little bigger and fill the screen. Now when I change from document 1 to 2 or any other number, I would like to retain the same zoom state.

Why?

Because productivity increases when working with noting down like Account Number from the each of the images by selecting document number again and again and zooming in again and again. Here I am reducing once step of zooming in to the same state as documents are similar in nature.

I tried -> MouseUp, MouseMove, MouseDown - Not firing when zooming in by drawing a rectangle
    -> DragEnter, DragDrop, DragLeave - Not firing when zooming in by drawing a rectangle
    -> KeyUp, KeyPress, KeyDown       - Not firing when zooming in by drawing a rectangle
    -> Paint                          - Not firing when zooming in by drawing a rectangle

I want to capture the coordinates of X & Y of the first point and X & Y of the leaving point in the image. Once I get this, I can easily set that values like this in PageChanged event.

docView.ZoomToRectangle(rect);

I would like to know from which event, I can capture the coordinates from the DocumentView control.

Below are the events attached.

DocumentView Events 1st Screenshot

DocumentView Events 2nd Screenshot

Searched the Internet but in vain. Any help would be greatly appreciated.

0

There are 0 best solutions below