Home > Back-end >  How to set up the RichView input method
How to set up the RichView input method

Time:10-13

How to set up the RichView input method, that is, when the cursor into the RichView edit control, automatic switch to set the state of Chinese input method,

CodePudding user response:

Richview is what controls, the third party components?

Generally allow input controls has ImeMode and ImeNames attributes,
Set of controls ImeMode imChinese, ImeName appoint a Chinese input method drop-down options

Of course also can dynamically set, such as setting up richedit

RichEdit1. ImeMode:=imChinese;
RichEdit1. ImeName:='Chinese (simplified) - sogou pinyin input method.

CodePudding user response:

Richview is third party controls, very unfortunate tell you richview ImeMode and ImeName both attributes as well! What is the other method to solve???
  • Related