以下是 CComboBox::GetEditSel 的简要说明:
void GetEditSel(int& nStartChar, int& nEndChar) const;
该方法通过传递两个整数引用,nStartChar 和 nEndChar,返回编辑框中当前选择的文本范围。这两个参数分别表示选择文本的起始字符位置和结束字符位置。
以下是一个简单的示例:
CComboBox myComboBox;
int nStartChar, nEndChar;
myComboBox.GetEditSel(nStartChar, nEndChar);
// 现在 nStartChar 和 nEndChar 包含编辑框中当前选择的文本范围
在这个例子中,GetEditSel 方法被用于获取组合框编辑框中当前选择的文本范围,并将结果存储在 nStartChar 和 nEndChar 变量中。这可以用于进一步处理编辑框中选择的文本。
转载请注明出处:http://www.zyzy.cn/article/detail/15937/MFC/CComboBox