EE_SET_SEL_VIEW¶
Changes the starting and ending position of the selection. You can send this message explicitly or use the Editor_SetSelView inline function.
EE_SET_SEL_VIEW
wParam = (WPARAM) (POINT_PTR*) pptSelStart;
lParam = (LPARAM) (POINT_PTR*) pptSelEnd;
Parameters¶
pptSelStart
Pointer to a POINT_PTR structure that specifies the starting position of the selection. The position is by display coordinates.
pptSelEnd
Pointer to a POINT_PTR structure that specifies the ending position of the selection. The position is by display coordinates.
Return Values¶
The return value is not used.