Skip to main content
All docs
V26.1
  • ITimeEditSettings.AllowUpDownArrowKeys Property

    Specifies whether users can press Up/Down arrow keys to increase/decrease the editor value when a mask is applied.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v26.1.dll

    Declaration

    [DefaultValue(true)]
    [Parameter]
    bool AllowUpDownArrowKeys { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true if a user can use arrow keys to change the editor value; otherwise, false.

    Remarks

    When the Time Edit has a mask applied, users can press Up Arrow/Down Arrow keys to increase/decrease the value in the active mask section. Refer to the following help topic for additional information: Shortcut Keys for Masked Input Elements.

    You can set the AllowUpDownArrowKeys property to false to disable this functionality at runtime. To enable/disable this functionality in markup, use the DxTimeEditSettings.AllowUpDownArrowKeys property instead.

    See Also