다음을 통해 공유


CRichEditCtrl::GetSel

검색 범위를 현재 선택 영역에이 CRichEditCtrl 개체입니다.

void GetSel(
   CHARRANGE& cr 
) const;
void GetSel(
   long& nStartChar,
   long& nEndChar 
) const;

매개 변수

  • cr
    참조 하는 CHARRANGE 구조에서 현재 선택 영역의 경계를 받을 수 있습니다.

  • nStartChar
    현재 선택 영역에서 첫 번째 문자의 인덱스입니다.

  • nEndChar
    현재 선택 영역에서 마지막 문자의 인덱스입니다.

설명

이 함수는 두 가지 선택에 대 한 범위를 얻을 수 있는 다른 방법을 제공 합니다.이러한 폼의 간략 한 설명을 따르십시오.

  • GetSel (cr) 이 양식을 사용 하 여 CHARRANGE 구조와 해당 cpMincpMax 구성원 범위를 반환 합니다.

  • GetSel( nStartChar**,** nEndChar ) This form returns the bounds in the parameters nStartChar and nEndChar.

선택 하면 모든 것을 포함 시작 (cpMin 또는 nStartChar) 0 이며 끝 (cpMax 또는 nEndChar)는 – 1입니다.

자세한 내용은 EM_EXGETSEL 메시지와 CHARRANGE 의 구조는 Windows SDK.

예제

// Set the selection to be all characters after the current selection.
long nStartChar, nEndChar;

m_myRichEditCtrl.GetSel(nStartChar, nEndChar); 
m_myRichEditCtrl.SetSel(nEndChar, -1);

요구 사항

헤더: afxcmn.h

참고 항목

참조

CRichEditCtrl 클래스

계층 구조 차트

CRichEditCtrl::SetSel

CRichEditCtrl::GetSelText

CRichEditCtrl::GetParaFormat

CRichEditCtrl::GetSelectionCharFormat