Input for WinForms | ComponentOne
C1.Win.Input Namespace / C1ComboBox Class / InternalWndProc Method

In This Topic
    InternalWndProc Method (C1ComboBox)
    In This Topic
    The edits window procedure of internal text editor. Inheriting classes can override this to add extra functionality.
    Syntax
    'Declaration
     
    
    Protected Overridable Sub InternalWndProc( _
       ByRef m As Message _
    ) 
    protected virtual void InternalWndProc( 
       ref Message m
    )

    Parameters

    m
    Remarks
    You cannot call the WndProc method for the internal text editor using this method. Use the workaround: class MyControl : C1TextBox { void MyMethod(ref System.Windows.Forms.Message message) { if (HostedControl is C1.Win.Input.Base.Editors.InputTextEditor textEditor) textEditor.RaiseWndProc(ref message); } }
    See Also