TImageEnMView.KeyInteract
Declaration
property KeyInteract: TIEMKeyInteract
Description
Specifies which keyboard activities the component will handle automatically.
Value | Description |
mkiMoveSelected | Clicking the cursor keys will move the selection to the next relevant thumbnail |
mkiLetterNavigation | Clicking a letter will select the next filename starting with that letter |
mkiScrollView | Clicking the cursor keys will scroll the view in the same way as moving the scrollbar. You must remove mkiMoveSelected to enable this |
mkiMiscellaneous | Clicking Ctrl+Plus/Minus will zoom in/out of the control. Ctrl+0 will reset the zoom |
Note: You can define the keyboard shortcuts using
KeyboardShortcuts
Default: [mkiMoveSelected, mkiMiscellaneous]
// Allow user to navigate by cursor, as well as letters and numbers
ImageEnMView1.KeyInteract := [ mkiMoveSelected, mkiLetterNavigation ];
// Cursor keys scroll the view rather than move the selection
ImageEnMView1.KeyInteract := [ mkiScrollView ];
See Also
◼MouseInteract
◼KeyboardShortcuts