This example illustrates the technique used to modify the functionality of existing RichEdit commands.
The RichEditControl exposes the IRichEditCommandFactoryService interface that enables you to substitute the default command with a custom command.
-
Create a command class, inherited from the command that you've decided to replace. Override its methods. The main functionality and command specifics is located in the Execute or the
ExecuteCore
method (the latter does not check for the command availability). -
Create a IRichEditCommandFactoryService implementation. Override the CreateCommand method to create an instance of a custom command class if an identifier of a certain command is passed as a parameter. So, instead of the default command, a custom command is used by the RichEditControl.
Finally we use this class to substitute the default RichEditControl's service.
(you will be redirected to DevExpress.com to submit your response)