CRichEditCtrl::GetSel
Recupera os limites da seleção corrente neste CRichEditCtrl objeto.
void GetSel(
CHARRANGE& cr
) const;
void GetSel(
long& nStartChar,
long& nEndChar
) const;
Parâmetros
cr
Referência a um CHARRANGE estrutura para receber os limites da seleção corrente.nStartChar
Índice baseado em zero do primeiro caractere da seleção corrente.nEndChar
Índice baseado em zero do último caractere na seleção corrente.
Comentários
As duas formas dessa função oferecem formas alternativas de obter os limites da seleção.Execute as breves descrições desses formulários:
() GetSel cr ) Este formulário usa o CHARRANGE estrutura com o seu cpMin and cpMax membros para retornar os limites.
GetSel( nStartChar**,** nEndChar ) This form returns the bounds in the parameters nStartChar and nEndChar.
A seleção incluir tudo se o início (cpMin or nStartChar) é 0 e o participante (cpMax or nEndChar) é – 1.
Para obter mais informações, consulte EM_EXGETSEL mensagem de e CHARRANGE estrutura o Windows SDK.
Exemplo
// Set the selection to be all characters after the current selection.
long nStartChar, nEndChar;
m_myRichEditCtrl.GetSel(nStartChar, nEndChar);
m_myRichEditCtrl.SetSel(nEndChar, -1);
Requisitos
Cabeçalho: afxcmn.h
Consulte também
Referência
CRichEditCtrl::GetSelectionCharFormat