VintaSoft Imaging .NET SDK 15.1: 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

<DefaultValueAttribute(False)>
<CategoryAttribute("VintaSoft")>
<DescriptionAttribute("A value indicating whether the keyboard navigation is enabled.")>
Public Property IsKeyboardNavigationEnabled As Boolean

[DefaultValue(False)]
[Category("VintaSoft")]
[Description("A value indicating whether the keyboard navigation is enabled.")]
public bool IsKeyboardNavigationEnabled { get; set; }

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 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also