CEdit::GetSel
呼叫此函式來取得目前選取範圍的開始和結束字元位置 (如果有的話) 使用傳回值或參數,在編輯控制項。
DWORD GetSel( ) const;
void GetSel(
int& nStartChar,
int& nEndChar
) const;
參數
nStartChar
要接收第一個字元位置位於目前選取範圍中的整數的參考。nEndChar
要接收位置第一個整數的參考 nonselected 傳遞目前選取範圍的結尾的字元。
傳回值
傳回 DWORD 傳回值包含在低序位文字的開始位置和第一個版本在選取之後結束在高序位文字的 nonselected 字元。
備註
如需詳細資訊,請參閱 Windows SDK的 EM_GETSEL 。
範例
// Set the selection to be all characters after the current selection.
DWORD dwSel = m_myEdit.GetSel();
m_myEdit.SetSel(HIWORD(dwSel), -1);
需求
Header: afxwin.h