SECEditController::GetSel
Gets the starting and ending character positions of the current selection.
Defined in: SECEditControllerCEditEmul.cpp
Syntax
DWORD SECEditController::GetSel() constvoid SECEditController::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. rem 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.
Developer Notes
This method is provided as a part of the Objective Edit CEdit compatiblity layer.See Also