ImageEn, unit iemview

TIEMKeyInteract


Declaration

TIEMKeyInteract = set of (mkiMoveSelected, mkiLetterNavigation, mkiScrollView);


Description

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


Examples

// 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 ];