SECEditController::DoInsertChar
voidSECEditController::DoInsertChar(const CString&strChar)
Inserts the given character at the current location.
Defined in: SECEditController.cpp
Return Value
void
Parameters
strChar
The character to insert.
Comments
This method is called by the SECEditController::OnChar handler.Developer Notes
OnChar takes the current character, places it in strChar, and calls this method. OnChar will buffer up the first byte of a multibyte character and combine it with the trailing byte before calling DoInsertChar.See Also