[]
The edits window procedure of internal text editor. Inheriting classes can override this to add extra functionality.
protected virtual void InternalWndProc(ref Message m)
Type | Name | Description |
---|---|---|
Message | m |
You cannot call the WndProc method for the internal text editor using this method. Use the workaround:
class MyControl :
{
void MyMethod(ref message)
{
if (HostedControl is textEditor)
textEditor.RaiseWndProc(ref message);
}
}