T O P I C R E V I E W |
quantuz |
Posted - Mar 02 2013 : 18:23:53 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; |
2 L A T E S T R E P L I E S (Newest First) |
klausdoege |
Posted - Mar 03 2013 : 01:41:12 ImageEnVect is like ImageEnView1
Klaus www.klausdoege.de |
klausdoege |
Posted - Mar 03 2013 : 01:38:56 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];
I hope that helps
Klaus www.klausdoege.de |