VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.UI Namespace / ImageViewer Class / IsKeyboardNavigationEnabled Property
Syntax Remarks Requirements SeeAlso
In This Topic
    IsKeyboardNavigationEnabled Property (ImageViewer)
    In This Topic
    Gets or sets a value indicating whether the keyboard navigation is enabled.
    Syntax
    'Declaration
    
    <CategoryAttribute("VintaSoft")>
    <DescriptionAttribute("A value indicating whether the keyboard navigation is enabled.")>
    <DefaultValueAttribute(False)>
    Public Property IsKeyboardNavigationEnabled As Boolean
    
    
    [Category("VintaSoft")]
    [Description("A value indicating whether the keyboard navigation is enabled.")]
    [DefaultValue(False)]
    public bool IsKeyboardNavigationEnabled { get; set; }
    
    
    [Category("VintaSoft")]
    [Description("A value indicating whether the keyboard navigation is enabled.")]
    [DefaultValue(False)]
    public: __property bool get_IsKeyboardNavigationEnabled();
    public: __property void set_IsKeyboardNavigationEnabled(
    bool value
    );
    [Category("VintaSoft")]
    [Description("A value indicating whether the keyboard navigation is enabled.")]
    [DefaultValue(False)]
    public:
    property bool IsKeyboardNavigationEnabled { bool get(); void set(bool value); }

    Property Value

    True - keyboard navigation is enabled; false - keyboard navigation is disabled.
    Default value is false.
    Remarks

    When keyboard navigation is enabled, the following keyboard shortcuts are available:

    • Left - scroll the viewer left if scrolling is possible; otherwise, go to the previous image
    • Right - scroll the viewer right if scrolling is possible; otherwise, go to the next image
    • Up - scroll the viewer up
    • Down - scroll the viewer down
    • Ctrl+Up, Ctrl+PageUp - go to the previous image
    • Ctrl+Down, Ctrl+PageDown - go to the next image
    • PageUp, Shift+Up - scroll the viewer to one screen up
    • PageDown, Shift+Down - scroll the viewer to one screen down
    • Home, Ctrl+Shift+Up - go to the first image in viewer
    • End, Ctrl+Shift+Down - go to the last image in viewer
    • Ctrl+Add - zoom-in image in viewer
    • Ctrl+Substract - zoom-out image in viewer

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also