delphi RichEdit选中文字右键菜单的实现


本文整理自网络,侵删。

 
procedure TForm1.RichEdit1MouseDown(Sender: TObject; Button: TMouseButton;
 Shift: TShiftState; X, Y: Integer);
var
 vPoint: TPoint;
begin
 if Button <> mbRight then Exit;
 vPoint := Point(X, Y);
 X := SendMessage(RichEdit1.Handle, EM_CHARFROMPOS,0,
    Integer(@vPoint)) and $0000FFFF;// 得到鼠标点击字符位置
 if (X >= RichEdit1.SelStart) and
    (X <= RichEdit1.SelStart + RichEdit1.SelLength) then
    ShowMessage(RichEdit1.SelText);
end;

来路:http://www.cnblogs.com/key-ok/p/3359027.html

相关阅读 >>

Delphi ioutils 单元(5): tdirectory.tdirectory 的其他功能

Delphi产生不重复随机数的算法

Delphi getdesktopdir 获取桌面路径

Delphi tdictionary 泛型如何排序

Delphi判断一个字符是否为汉字的最佳方法

Delphi编程实现图像的淡入浅出

Delphi 隐藏 tpagecontrol 的标签方法

Delphi vcl 模式下和firemonkey 模式下的字符串

Delphi android程序启动过程

Delphi 关于虚拟的desktop的编程

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...