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 |
Default: [mkiMoveSelected]
// 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 ];