|
virtual |
Inserts text into the edit control at specified position.
Use this function to insert a new text into the edit control at specified by nInsertFrom position. If nInsertFrom is -1 the text will be inserted at the current caret position.
The text is placed in undo buffer unless you set bSuppressUndo to TRUE. In this case the text is not placed in the undo buffer and the undo buffer is cleared.
lpszText | Points to a text string to insert. |
nInsertFrom | Specifies the insert position (offset from the beginning of the existing text). |
bRedraw | Specifies whether the edit control should be redrawn (TRUE) or not (FALSE). |
bSuppressUndo | If TRUE, the inserted text is not placed in the undo buffer and the undo buffer is cleared. |
bUpdateLineData | Specifies whether the line-related data (markers) should be updated or not. |
bForceNextUndo | Specifies whether the undo action, created as a result of deletion, should be used as a complex undo action in sequence. |
bAlwaysAtEnd | If TRUE, the inserted text will be added to the end of the existing text. |