int CEdit::CharFromPos(CPoint pt) const;
这个方法接受一个 CPoint 对象作为参数,表示在控件中的一个点的坐标。它返回该点处的字符索引。
使用示例:
CPoint point(50, 20); // 假设坐标为 (50, 20)
int charIndex = m_editCtrl.CharFromPos(point);
// charIndex 现在包含在 (50, 20) 处的字符索引
这样,你可以使用 CharFromPos 方法来确定在给定点的位置处的字符索引,以便进行相应的操作。
转载请注明出处:http://www.zyzy.cn/article/detail/17624/MFC/CEdit