Represents keyboard commands that trigger navigation and actions within the Wizard component. Used with CustomKeyboardShortcuts to define custom keyboard mappings.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public enum WizardKeyboardCommand
Fields
Navigates to the first step in the wizard. Default shortcut: Home.
C#
NavigateToFirstStep = 2
Navigates to the last step in the wizard. Default shortcut: End.
C#
NavigateToLastStep = 3
Navigates to the next step in the wizard. Default shortcuts: ArrowDown, ArrowRight (RTL).
C#
NavigateToNextStep = 1
Navigates to the previous step in the wizard. Default shortcuts: ArrowUp, ArrowLeft (RTL).
C#
NavigateToPreviousStep = 0