SECEditController::Insert

BOOL SECEditController::Insert(int nLine, int nCol, LPCTSTR lpszText, int nLength = -1, int* pEndLine = NULL, int* pEndCol = NULL)

Inserts the given text at the given position.

Defined in: SECEditController.cpp

Return Value

Returns non-zero if successful; otherwise 0.

Parameters

nLine

The line index to insert text.

nCol

The column index to insert text.

lpszText

Points to the text to insert.

nLength

The length of the text to insert. If -1, the length of the text is detected.

pEndLine

Output parameter. The ending line index of the inserted text.

pEndCol

Output parameter. The ending column index of the inserted text.

See Also

SECEditController InsertColumnText Delete