Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / EditBase Class / ExitOnLeftRightKey Property


In This Topic
    ExitOnLeftRightKey Property (EditBase)
    In This Topic
    Gets or sets whether the focus automatically moves to the previous or next tab ordering control when pressing the left, right arrow keys.
    Syntax
    'Declaration
     
    Public Property ExitOnLeftRightKey As ExitOnLeftRightKey
    'Usage
     
    Dim instance As EditBase
    Dim value As ExitOnLeftRightKey
     
    instance.ExitOnLeftRightKey = value
     
    value = instance.ExitOnLeftRightKey
    public ExitOnLeftRightKey ExitOnLeftRightKey {get; set;}

    Property Value

    One of the GrapeCity.Windows.InputMan.ExitOnLeftRightKey enumeration values.
    The default is GrapeCity.Windows.InputMan.ExitOnLeftRightKey.None.
    Remarks
    The value of this property indicates the key which could move the input focus to the next control. When the caret is at the last char of this control, focus will move out by hit the Right key. And when the caret is before the first char of this control, focus will move out by hit the Left key.
    See Also