ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Sheet Namespace / FlexSheet Class / KeyActionTab Property






In This Topic
    KeyActionTab Property (FlexSheet)
    In This Topic
    Gets or sets the action to perform when the TAB key is pressed.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Overrides Property KeyActionTab As KeyAction
    'Usage
     
    
    Dim instance As FlexSheet
    Dim value As KeyAction
     
    instance.KeyActionTab = value
     
    value = instance.KeyActionTab
    [System.ComponentModel.DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public override KeyAction KeyActionTab {get; set;}
    public read-write property KeyActionTab: KeyAction; override; 
    System.ComponentModel.DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)
    public override function get,set KeyActionTab : KeyAction
    [System.ComponentModel.DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public: __property KeyAction get_KeyActionTab() override;
    public: __property void set_KeyActionTab( 
       KeyAction value
    ) override;
    [System.ComponentModel.DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public:
    property KeyAction KeyActionTab {
       KeyAction get() override;
       void set (    KeyAction value) override;
    }
    Remarks
    The default setting for this property is C1.Web.Mvc.Grid.KeyAction.CycleOut setting that causes the selection to move through the cells as C1.Web.Mvc.Grid.KeyAction.Cycle, and then on to the next/previous control on the page when the last or first cells are selected.
    See Also