SECEditController::LineIndex
intSECEditController::LineIndex(intnLine= -1, intnCol= 0)
Retrieves the character index of a line.
Defined in: SECEditControllerCEditEmul.cpp
Return Value
The character index of the line specified in nLine or -1 if the specified line number is greater then the number of lines in the edit control.
Parameters
nLine
Contains the index value for the desired line in the text of the edit control, or contains -1. If nLine is -1, it specifies the current line, that is, the line that contains the caret.
nCol
Contains the column index of the desired line.
Developer Notes
This method is provided as a part of the Objective Edit CEdit compatiblity layer.The paramter nCol has been added with a default of 0. To emulate CEdit behavior, omit this parameter. If supplied, this value will be used in calculating the result.
See Also