SECEditController::ExtendSelection
Extends the selection from the caret to the given line and column and moves the caret to this location.
Defined in: SECEditController.cpp
Syntax
void ExtendSelection(int nLine, int nCol, BOOL bInvalidate /* = TRUE */);void ExtendSelection(const SECEditLineCol& lc, BOOL bInvalidate /* = TRUE */)
Return Value
void
Parameters
nLine
The line to extend the selection to.
nCol
The column to extend the selection to.
lc
The line and column to extend to.
bInvalidate
Causes the selection to be invalidated if true.
See Also