CEdit::GetSel

DWORD GetSel( ) const;

void GetSel( int& nStartChar, int& nEndChar ) const;

Return Value

The version that returns a DWORD returns a value that contains the starting position in the low-order word and the position of the first nonselected character after the end of the selection in the high-order word.

Parameters

nStartChar

Reference to an integer that will receive the position of the first character in the current selection.

nEndChar

Reference to an integer that will receive the position of the first nonselected character past the end of the current selection.

Remarks

Call this function to get the starting and ending character positions of the current selection (if any) in an edit control, using either the return value or the parameters.

For more information, see EM_GETSEL in the Win32 documentation.

CEdit OverviewClass MembersHierarchy Chart

See Also   CEdit::SetSel