CEdit获取一行的文字

转自:http://blog.csdn.net/riag/article/details/3948124

CEdit的接口LineLength(nCharIndex) 的参数并不是指CEdit的第几行,需要通过函数LineIndex来进行转换。


[cpp]  view plain copy
  1. int nIndex = 4 ; //假设要获取CEdit的第4行的文字  
  2. int nCharIndex = nCharIndex = this->LineIndex(nIndex) ;  
  3. int nlen = this->LineLength(nCharIndex) ;  
  4. CString strText ;  
  5. this->GetLine(nIndex, strText.GetBuffer(nlen), nlen) ;  
  6. strText.ReleaseBuffer() ;  


下面是获取鼠标双击CEdit的那行文字
[cpp]  view plain copy
  1. void MyEdit::OnLButtonDblClk(UINT nFlags, CPoint point)  
  2. {  
  3.     CEdit::OnLButtonDblClk(nFlags, point) ;  
  4.       
  5.     int nIndex = this->CharFromPos(point) ;  
  6.     int nCharIndex = LOWORD(nIndex) ;    
  7.     nIndex = HIWORD(nIndex) ;  
  8.     if (nIndex == -1)  
  9.     {  
  10.         return ;  
  11.     }  
  12.     CString strText ;  
  13.     int nCharIndex = this->LineIndex(nIndex) ;  
  14.      
  15.     int nlen = this->LineLength(nCharIndex) ;  
  16.     this->GetLine(nIndex, strText.GetBuffer(nlen), nlen) ;  
  17.     strText.ReleaseBuffer() ;  
  18. }   

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值