T O P I C R E V I E W |
tiagosis |
Posted - Feb 17 2022 : 15:28:49 hello, I'm using PDF viewing with ImagenEnView and when scrolling the pages with the mouse wheel the pages run very quickly, how do I solve this?
tiago |
2 L A T E S T R E P L I E S (Newest First) |
tiagosis |
Posted - Feb 21 2022 : 08:00:31 thanks, that solved it for me
tiago |
aleatprog |
Posted - Feb 17 2022 : 19:20:05 Hi,
you may try TIEMouseWheelParams.Variation to limit the speed.
// Mouse wheel will scroll image by 15% of component height ImageEnView1.MouseWheelParams.Action := iemwVScroll; ImageEnView1.MouseWheelParams.Variation := iemwPercentage; ImageEnView1.MouseWheelParams.value := 15;
// Mouse wheel will scroll image by 1 pixel ImageEnView1.MouseWheelParams.Action := iemwVScroll; ImageEnView1.MouseWheelParams.Variation := iemwAbsolute; ImageEnView1.MouseWheelParams.value := 1;
Ale |
|
|