1

Is it possible to get mouse position or coordinates when I click anywhere in PDF (axAcroPdflib), because I want highlight area horizontally once I get coordinates using C#.

Sheeba
  • 25
  • 2
  • 18
  • I guess it should be possible to determine if you have your mouse over the window and if the window is active, and then monitor mouse clicks... Have you tried anything so far? – walther Mar 30 '15 at 11:42

1 Answers1

0

Did you try System.Windows.Forms.Cursor.Position? It should be returning a point in X/Y coordinates.

Burak Karakuş
  • 1,368
  • 5
  • 20
  • 43