Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / EditBase Class / MoveFocusByKeyExit Method
The KeyExitEventArgs instance that contains the event data.


In This Topic
    MoveFocusByKeyExit Method (EditBase)
    In This Topic
    Moves the focus using the key exit event.
    Syntax
    'Declaration
     
    
    Protected Overridable Sub MoveFocusByKeyExit( _
       ByVal e As KeyExitEventArgs _
    ) 
    'Usage
     
    
    Dim instance As EditBase
    Dim e As KeyExitEventArgs
     
    instance.MoveFocusByKeyExit(e)
    protected virtual void MoveFocusByKeyExit( 
       KeyExitEventArgs e
    )

    Parameters

    e
    The KeyExitEventArgs instance that contains the event data.
    Remarks
    ExitKeys.CharInput, ExitKeys.CtrlRight, ExitKeys.NextControl, ExitKeys.Right, and ExitKeys.Tab move the focus forward. Other ExitKeys move the focus backward. The base method must be invoked when overridden in the inherited class; otherwise, the focus will not move.
    See Also