CComboBox::GetEditSel

获取当前选择的开始和结束字符位置在组合框中编辑控件。

DWORD GetEditSel( ) const;

返回值

包含在低序运行的起始位置和位置的第一个32位值在选择之后的结尾。高位运行的nonselected字符。 如果此功能在组合框使用,而不需要编辑控件,CB_ERR 返回。

示例

DWORD dwSel;

// Set the selection to be all characters after the current selection.
if ((dwSel = m_MyComboBox.GetEditSel()) != CB_ERR)
{
   m_MyComboBox.SetEditSel(HIWORD(dwSel), -1);
}

要求

Header: afxwin.h

请参见

参考

CComboBox选件类

层次结构图

CComboBox::SetEditSel

CB_GETEDITSEL