Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBox Class / WndProc Method
The Windows System.Windows.Forms.Message to process.


In This Topic
    WndProc Method (GcComboBox)
    In This Topic
    Processes Windows messages.
    Syntax
    'Declaration
     
    
    Protected Overrides Sub WndProc( _
       ByRef m As Message _
    ) 
    'Usage
     
    
    Dim instance As GcComboBox
    Dim m As Message
     
    instance.WndProc(m)
    protected override void WndProc( 
       ref Message m
    )

    Parameters

    m
    The Windows System.Windows.Forms.Message to process.
    Remarks
    All messages are sent to the WndProc method after getting filtered through the GrapeCity.Framework.Spread.InputMan.CellType.Forms.PreProcessMessage method.

    The WndProc method corresponds exactly to the Windows WindowProc function. For more information about processing Windows messages, see the WindowProc function documentation in the Windows Platform SDK reference located in the MSDN library at http://msdn.microsoft.com/library.

    Notes to Inheritors:

    Inheriting controls should call the base class's WndProc method to process any messages that they do not handle.

    See Also