[]
        
(Showing Draft Content)

C1.Win.Input.Base.C1DropDownEditorBase.InternalWndProc

InternalWndProc Method

InternalWndProc(ref Message)

The edits window procedure of internal text editor. Inheriting classes can override this to add extra functionality.

Declaration
protected virtual void InternalWndProc(ref Message m)
Parameters
Type Name Description
Message m
Remarks

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);
    }
}