ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearPageView Class / ProcessCmdKey Method
A Message, passed by reference, that represents the window message to process.
One of the Keys values that represents the key to process.




In This Topic
    ProcessCmdKey Method
    In This Topic
    Processes a command key.
    Syntax
    'Declaration
     
    Protected Overrides Function ProcessCmdKey( _
       ByRef msg As Message, _
       ByVal keyData As Keys _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearPageView
    Dim msg As Message
    Dim keyData As Keys
    Dim value As Boolean
     
    value = instance.ProcessCmdKey(msg, keyData)
    protected override bool ProcessCmdKey( 
       ref Message msg,
       Keys keyData
    )
    protected: bool ProcessCmdKey( 
       ref Message msg,
       Keys keyData
    ) override 
    protected:
    bool ProcessCmdKey( 
       Message% msg,
       Keys keyData
    ) override 

    Parameters

    msg
    A Message, passed by reference, that represents the window message to process.
    keyData
    One of the Keys values that represents the key to process.

    Return Value

    Returns true if the character was processed by the control; otherwise, false.
    See Also