SECEditController::SelectLineRange
Selects a range of lines.
Defined in: SECEditController.cpp
Syntax
void SelectLineRange();void SelectLineRange(int nStartLine, int nEndLine = -1);
Return Value
void
Parameters
nStartLine
The starting line index for the selection.
Comments
The overload that accepts no parameters will either convert the current selection into a full line selection ranging the lines in the selection, or, if no selection exists, will select the current line.nEndLine
The ending line index for the selection. If -1, the selection is restricted to the starting line.
See Also