IsKeyboardSelectionEnabled Property (TextSelectionTool)
In This Topic
Gets or sets a value indicating whether the text selection using keyboard is enabled.
Syntax
'Declaration
Public Property IsKeyboardSelectionEnabled As Boolean
public bool IsKeyboardSelectionEnabled { get; set; }
public: __property bool get_IsKeyboardSelectionEnabled();
public: __property void set_IsKeyboardSelectionEnabled(
bool
);
public:
property bool IsKeyboardSelectionEnabled {
bool get();
void set(bool );
}
Property Value
True - text selection using keyboard is enabled; false - text selection using keyboard is disabled.
Default value is true.
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
Action, which is related with keyboard shortcut, will be accompanied by text selection if "Shift" key is pressed.
Requirements
Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
See Also