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


In This Topic
    WndProc Method (GcTextBox)
    In This Topic
    Processes Windows messages.
    Syntax
    'Declaration
     
    
    Protected Overrides Sub WndProc( _
       ByRef m As Message _
    ) 
    'Usage
     
    
    Dim instance As GcTextBox
    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 System.Windows.Forms.Control.PreProcessMessage(System.Windows.Forms.Message@) 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