如何得到光标及鼠标的X,Y值?(56分)

  • 主题发起人 主题发起人 flysand
  • 开始时间 开始时间
F

flysand

Unregistered / Unconfirmed
GUEST, unregistred user!
光标的X,Y值 &nbsp; &nbsp;调用API中的EM_LINEFROMCHAR和EM_LINEINDEX消息来确定<br>鼠标的X,Y值 &nbsp; &nbsp;FormMouseDown中position.x和position.y
 
GetCursorPos
 
鼠标的X,Y值<br>Mouse.CursorPos.Y;<br>mouse.CursorPos.X;
 
EM_LINEFROMCHAR<br>GetCursorPos<br>只能得到行的位置,如何才能得到X,Y值呢
 
Mouse.CursorPos.Y;<br>mouse.CursorPos.X;<br>
 
GetCursorPos是得到一个TPoint的引用参数,不就有x和y吗.
 
to bluerain<br>&nbsp; 如何使用
 
var<br>&nbsp; P : TPoint;<br>begin<br>&nbsp; GetCursorPos(P);<br>&nbsp; //P.x,P.y就是坐标了.<br>end;
 
多人接受答案了。
 
var<br>&nbsp; p: Tpoint;<br>begin<br>&nbsp; GetCursorPos(p);<br>// &nbsp;p.x和p.y便得到<br>end;
 
后退
顶部