Is it possible to scroll with the mouse at the same time as select mode is set? When the mouse is outside the selected are a mouse down shuld make the image scroll, now I have to use the scroll bars. I tried the setting below but without effect. ImageEnView1->MouseInteract = selectedChild->ImageEnView1->MouseInteract << miSelect << miScroll;
yes it's possible, you must set as example: - ImageEnVect.SelectionOptions:=[iesoSizeable, iesoMoveable, iesoCanScroll]; and if you liked: - if Animate_CheckBox.Checked then ImageEnVect.SelectionOptions:=ImageEnVect.SelectionOptions+[iesoAnimated]; - if CutBorder_CheckBox.Checked then ImageEnVect.SelectionOptions:=ImageEnVect.SelectionOptions+[iesocutborders];